Skip to content

Commit

Permalink
Fix getting version info (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 authored Mar 6, 2024
1 parent c4c2752 commit a996e17
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ephys_link/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.7"
__version__ = "1.2.8"
2 changes: 1 addition & 1 deletion src/ephys_link/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async def get_version(_) -> str:
:return: Version number as defined in :mod:`ephys_link.__about__`.
:rtype: str
"""
return version
return __version__

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

0 comments on commit a996e17

Please sign in to comment.