mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-14 01:41:23 -06:00
12 lines
396 B
Python
12 lines
396 B
Python
from .distribution import Distribution as Distribution
|
|
|
|
class SDist(Distribution):
|
|
filename: str
|
|
metadata_version: str
|
|
def __init__(self, filename: str, metadata_version: str | None = ...) -> None: ...
|
|
def read(self) -> bytes: ...
|
|
|
|
class UnpackedSDist(SDist):
|
|
def __init__(self, filename: str, metadata_version: str | None = ...) -> None: ...
|
|
def read(self) -> bytes: ...
|