mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-14 01:41:23 -06:00
11 lines
323 B
Python
11 lines
323 B
Python
import types
|
|
|
|
from .distribution import Distribution as Distribution
|
|
|
|
class Installed(Distribution):
|
|
package_name: str
|
|
package: str | types.ModuleType
|
|
metadata_version: str
|
|
def __init__(self, package: str | types.ModuleType, metadata_version: str | None = ...) -> None: ...
|
|
def read(self) -> bytes: ...
|