mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-16 12:12:55 -06:00
8 lines
169 B
Python
8 lines
169 B
Python
__all__ = ['properties']
|
|
|
|
|
|
try:
|
|
from jaraco.classes import properties
|
|
except ImportError: # pragma: no cover
|
|
from . import properties # type: ignore[no-redef]
|