mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 14:45:12 +00:00
9df2f1ff13
* Apply isort * Tweak isort config * Add env.py as a known_first_party * Add one missing known first party * Make config compat with older isort versions * Add another comment * Revert pyproject setting
7 lines
137 B
Python
7 lines
137 B
Python
from typing import Tuple, Union
|
|
|
|
def _to_int(s: str) -> Union[int, str]: ...
|
|
|
|
__version__: str
|
|
version_info: Tuple[Union[int, str], ...]
|