Skip to content

Commit 85dd344

Browse files
committed
add typing
1 parent 0adb013 commit 85dd344

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from pathlib import Path
22
from setuptools import find_packages, setup
3+
from typing import Optional
34

45
# Load version number
5-
__version__: str | None = None
6+
__version__: Optional[str] = None
67

78
src_dir = Path(__file__).parent.absolute()
89
version_file = src_dir / 'p_tqdm' / '_version.py'

0 commit comments

Comments
 (0)