Skip to content

Commit

Permalink
Fix missing ) in docs/source/conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
harripd committed Jun 3, 2024
1 parent f285b6b commit 2eafc9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# The full version, including alpha/beta/rc tags
from importlib.metadata import version as get_version
release:str = get_version('burstH2MM')
version:str = '.'.join(release.split('.')[:2]
version:str = '.'.join(release.split('.'))[:2]


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 2eafc9d

Please sign in to comment.