diff --git a/hyfetch/__main__.py b/hyfetch/__main__.py index 204ab68f..1f4e0064 100644 --- a/hyfetch/__main__.py +++ b/hyfetch/__main__.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import os from .py import run_py diff --git a/hyfetch/__version__.py b/hyfetch/__version__.py index 009e1c49..33cb74df 100644 --- a/hyfetch/__version__.py +++ b/hyfetch/__version__.py @@ -1 +1,3 @@ +from __future__ import annotations + VERSION = '2.0.2' diff --git a/hyfetch/pride_month.py b/hyfetch/pride_month.py index 43203f84..5d94e2d6 100644 --- a/hyfetch/pride_month.py +++ b/hyfetch/pride_month.py @@ -1,11 +1,12 @@ +from __future__ import annotations + import math from time import sleep -from hyfetch import presets -from hyfetch.color_util import RGB, color, printc -from hyfetch.constants import IS_WINDOWS -from hyfetch.neofetch_util import term_size -from hyfetch.presets import PRESETS +from .color_util import RGB, color, printc +from .constants import IS_WINDOWS +from .neofetch_util import term_size +from .presets import PRESETS def key_pressed(): diff --git a/hyfetch/py.py b/hyfetch/py.py index 022cd6ad..d242d6cf 100644 --- a/hyfetch/py.py +++ b/hyfetch/py.py @@ -1,6 +1,9 @@ +from __future__ import annotations + from . import main from .color_util import printc + def run_py(): try: main.run() diff --git a/hyfetch/rs.py b/hyfetch/rs.py index 39bff477..f50d21ce 100644 --- a/hyfetch/rs.py +++ b/hyfetch/rs.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import os import platform import subprocess