Skip to content

Commit

Permalink
Fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ethho committed Sep 19, 2024
1 parent 3ada1ea commit 3201748
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions datajoint/version.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
try:
# Use datajoint/_version.py written by setuptools_scm if it exists
# This module is not tracked in VCS and defines a __version_tuple__ like
# (0, 14, 3, 'dev224', 'g0812fe17.d20240919')
# Use datajoint/_version.py written by setuptools_scm if it exists
# This module is not tracked in VCS and defines a __version_tuple__ like
# (0, 14, 3, 'dev224', 'g0812fe17.d20240919')
from ._version import __version_tuple__ as version_tuple
except ImportError:
version_tuple = (0, 14, 3)
version_tuple = (0, 14, 3)

__version__ = ".".join(str(x) for x in version_tuple[:3])

Expand Down

0 comments on commit 3201748

Please sign in to comment.