Skip to content

Commit

Permalink
style: sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
yzx9 committed Feb 13, 2023
1 parent aba7177 commit fc9335f
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion swcgeom/core/branch.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Branch is a set of node points."""

from typing import Dict, Generic, Iterable
from typing import Generic, Iterable

import numpy as np
import numpy.typing as npt
Expand Down
1 change: 0 additions & 1 deletion swcgeom/core/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import numpy as np
import numpy.typing as npt
from typing_extensions import Self

from .swc import DictSWC, SWCTypeVar

Expand Down
1 change: 0 additions & 1 deletion swcgeom/core/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
class Path(SWCLike, Generic[SWCTypeVar]):
"""Neural path.
A path is a linear set of points without bifurcations.
"""

Expand Down
2 changes: 1 addition & 1 deletion swcgeom/core/population.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import os
from typing import Any, Dict, Iterator, List, cast, overload

from .tree import Tree
from .swc import eswc_cols
from .tree import Tree

__all__ = ["Population"]

Expand Down
2 changes: 1 addition & 1 deletion swcgeom/core/segment.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""The segment is a branch with two nodes."""

from typing import Dict, Generic, Iterable, List, TypeVar
from typing import Generic, Iterable, List, TypeVar

import numpy as np
import numpy.typing as npt
Expand Down

0 comments on commit fc9335f

Please sign in to comment.