mirror of
https://github.com/hykilpikonna/hyfetch.git
synced 2026-03-21 17:24:51 -05:00
[F] from __future__ import annotations
This commit is contained in:
parent
75a2e9d8d3
commit
e788f93c2b
|
|
@ -1,3 +1,5 @@
|
|||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
|
||||
from .py import run_py
|
||||
|
|
|
|||
|
|
@ -1 +1,3 @@
|
|||
from __future__ import annotations
|
||||
|
||||
VERSION = '2.0.2'
|
||||
|
|
|
|||
|
|
@ -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():
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
from __future__ import annotations
|
||||
|
||||
from . import main
|
||||
from .color_util import printc
|
||||
|
||||
|
||||
def run_py():
|
||||
try:
|
||||
main.run()
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
from __future__ import annotations
|
||||
|
||||
import os
|
||||
import platform
|
||||
import subprocess
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user