Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Dec 10, 2024
1 parent 1e6ab6e commit d85739a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/easyconfig/pre_process/pre_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
from typing_extensions import Self, override

from easyconfig.pre_process.base import PreProcessBase
from .delete_entry import DeleteEntryPreProcess

from .delete_entry import DeleteEntryPreProcess
from .move_entry import MoveEntryPreProcess
from .rename_entry import RenameEntryPreProcess

Expand Down
3 changes: 2 additions & 1 deletion src/easyconfig/pre_process/rename_entry.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from __future__ import annotations

from typing import Any, Final, TYPE_CHECKING
from typing import TYPE_CHECKING, Any, Final

from typing_extensions import override

from .base import PathAccessor, PreProcessBase


if TYPE_CHECKING:
from collections.abc import Callable

Expand Down

0 comments on commit d85739a

Please sign in to comment.