Skip to content

Commit

Permalink
Complete type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed May 23, 2023
1 parent c59d0c7 commit c0b7276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sect/core/trapezoidal/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Node(ABC):
__slots__ = '_parents',

def __init__(self) -> None:
self._parents = [] # type: List['Node']
self._parents: List[Node] = []

@property
@abstractmethod
Expand Down

0 comments on commit c0b7276

Please sign in to comment.