Skip to content

Commit

Permalink
add typing
Browse files Browse the repository at this point in the history
  • Loading branch information
sahiljhawar committed Aug 5, 2024
1 parent 0adb013 commit 85dd344
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from pathlib import Path
from setuptools import find_packages, setup
from typing import Optional

# Load version number
__version__: str | None = None
__version__: Optional[str] = None

src_dir = Path(__file__).parent.absolute()
version_file = src_dir / 'p_tqdm' / '_version.py'
Expand Down

0 comments on commit 85dd344

Please sign in to comment.