Skip to content

Commit

Permalink
formatting: remove any unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
skim0119 committed Apr 30, 2024
1 parent cba8e24 commit df474eb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion elastica/systems/protocol.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__doc__ = """Base class for elastica system"""

from typing import Protocol, Any
from typing import Protocol

from elastica.typing import StateType
from elastica.rod.data_structures import _KinematicState, _DynamicState
Expand Down
2 changes: 1 addition & 1 deletion elastica/timestepper/explicit_steppers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__doc__ = """Explicit timesteppers and concepts"""

from typing import Any, Tuple
from typing import Tuple

import numpy as np
from copy import copy
Expand Down
2 changes: 1 addition & 1 deletion elastica/timestepper/symplectic_steppers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__doc__ = """Symplectic time steppers and concepts for integrating the kinematic and dynamic equations of rod-like objects. """

from typing import Tuple, Callable, Any, List
from typing import Any, Callable, List

from elastica.typing import (
SystemCollectionType,
Expand Down
2 changes: 1 addition & 1 deletion elastica/timestepper/tag.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Type, List, Callable
from typing import Callable, Type


# TODO: Maybe move this for common utility
Expand Down
4 changes: 1 addition & 3 deletions elastica/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@

from typing import TYPE_CHECKING
from typing import Type, Union, Callable, Any
from typing import Protocol, TypeAlias

import numpy as np
from typing import TypeAlias


if TYPE_CHECKING:
Expand Down

0 comments on commit df474eb

Please sign in to comment.