From d9a31fd78e6121f30538cb935e3ca8f157a0c049 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Sun, 14 Aug 2022 12:27:03 -0400 Subject: [PATCH] [F] Fix version import --- hyfetch/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyfetch/__init__.py b/hyfetch/__init__.py index 4d44c4e4..52a313a9 100644 --- a/hyfetch/__init__.py +++ b/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__':