mirror of https://github.com/ansible/ansible.git
Merge 698e5b6892 into 7b4d4ed672
commit
ef703e6d3f
@ -0,0 +1,5 @@
|
||||
# NOTE: `distlib` is untyped as of 10 Oct 2025.
|
||||
# NOTE: This should be removed once types are upstream.
|
||||
# Ref: https://github.com/pypa/distlib/pull/195
|
||||
|
||||
class DistlibException(Exception): ...
|
||||
@ -0,0 +1,8 @@
|
||||
# NOTE: `distlib` is untyped as of 10 Oct 2025.
|
||||
# NOTE: This should be removed once types are upstream.
|
||||
# Ref: https://github.com/pypa/distlib/pull/195
|
||||
|
||||
class Manifest:
|
||||
def __init__(self, base: str | None = ...) -> None: ...
|
||||
def process_directive(self, directive: str) -> None: ...
|
||||
def sorted(self, wantdirs: bool = ...) -> list[str]: ...
|
||||
Loading…
Reference in New Issue