Skip to content

Commit

Permalink
fix __init__ import dir
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenhua0320 committed Jul 17, 2024
1 parent 4a3e539 commit 7091851
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/regolith/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
"""Research Group Content Management System"""

# package version
from regolith.version import __version__
from src.regolith.version import __version__

# silence the pyflakes syntax checker
assert __version__ or True

# End of file
def __version__():
return None

0 comments on commit 7091851

Please sign in to comment.