Skip to content

Commit a996e17

Browse files
authored
Fix getting version info (#331)
1 parent c4c2752 commit a996e17

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.idea/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ephys_link/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.7"
1+
__version__ = "1.2.8"

src/ephys_link/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ async def get_version(_) -> str:
130130
:return: Version number as defined in :mod:`ephys_link.__about__`.
131131
:rtype: str
132132
"""
133-
return version
133+
return __version__
134134

135135
async def get_manipulators(self, _) -> str:
136136
"""Get the list of discoverable manipulators.

0 commit comments

Comments
 (0)