Skip to content

Commit

Permalink
fix: move import to type checking block
Browse files Browse the repository at this point in the history
  • Loading branch information
loqusion committed May 3, 2024
1 parent 3326cff commit da7972b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/hyprshade/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from __future__ import annotations

import logging
from collections.abc import Callable
from typing import Final
from typing import TYPE_CHECKING, Final

import click

Expand All @@ -17,6 +16,10 @@
from .on import on
from .toggle import toggle

if TYPE_CHECKING:
from collections.abc import Callable


COMMANDS: Final = [
auto,
current,
Expand Down

0 comments on commit da7972b

Please sign in to comment.