Browse Source

[F] Fix version import

Azalea (on HyDEV-Daisy) 2 years ago
parent
commit
d9a31fd78e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      hyfetch/__init__.py

+ 2 - 2
hyfetch/__init__.py

@@ -1,8 +1,8 @@
 from __future__ import annotations
 
-from . import main
+from . import main, constants
 
-__version__ = main.VERSION
+__version__ = constants.VERSION
 
 
 if __name__ == '__main__':