Skip to content

Commit

Permalink
Linting template code.
Browse files Browse the repository at this point in the history
  • Loading branch information
astronomerritt committed Jan 25, 2024
1 parent 6c90cfc commit 92f67fe
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/adler/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# file generated by setuptools_scm
# don't change, don't track in version control
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union

VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object

version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = "0.1.dev9+g6c90cfc"
__version_tuple__ = version_tuple = (0, 1, "dev9", "g6c90cfc")

0 comments on commit 92f67fe

Please sign in to comment.