mirror of
https://github.com/thelsing/knx.git
synced 2025-01-02 00:06:43 +01:00
7 lines
137 B
Python
7 lines
137 B
Python
|
from typing import Union, Tuple
|
||
|
|
||
|
def _to_int(s: str) -> Union[int, str]: ...
|
||
|
|
||
|
__version__: str
|
||
|
version_info: Tuple[Union[int, str], ...]
|