Skip to content

Commit

Permalink
pyupgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
nwatson22 committed May 7, 2024
1 parent b55d052 commit 02ed510
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyk/src/pyk/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
from .utils import check_dir_path, check_file_path, ensure_dir_path, exit_with_process_error

if TYPE_CHECKING:
from collections.abc import Iterator
from typing import IO, Any, Final, Iterable
from collections.abc import Iterable, Iterator
from typing import IO, Any, Final


_LOGGER: Final = logging.getLogger(__name__)
Expand Down
5 changes: 4 additions & 1 deletion pyk/src/pyk/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
from pathlib import Path

# from enum import Enum
from typing import Any, Callable, Final, Generic, Iterable, TypeVar
from typing import TYPE_CHECKING, Any, Final, Generic, TypeVar

if TYPE_CHECKING:
from collections.abc import Callable, Iterable

import tomli

Expand Down

0 comments on commit 02ed510

Please sign in to comment.