Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
10
venv/lib/python3.12/site-packages/av/dictionary.pyi
Normal file
10
venv/lib/python3.12/site-packages/av/dictionary.pyi
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from collections.abc import MutableMapping
|
||||
from typing import Iterator
|
||||
|
||||
class Dictionary(MutableMapping[str, str]):
|
||||
def __getitem__(self, key: str) -> str: ...
|
||||
def __setitem__(self, key: str, value: str) -> None: ...
|
||||
def __delitem__(self, key: str) -> None: ...
|
||||
def __len__(self) -> int: ...
|
||||
def __iter__(self) -> Iterator[str]: ...
|
||||
def __repr__(self) -> str: ...
|
||||
Loading…
Add table
Add a link
Reference in a new issue