Skip to content

Commit c223e83

Browse files
committed
remove unnecessary docstring
Signed-off-by: Thijs Baaijen <[email protected]>
1 parent e81346f commit c223e83

File tree

1 file changed

+1
-5
lines changed
  • src/power_grid_model_ds/_core/model/graphs/models

1 file changed

+1
-5
lines changed

src/power_grid_model_ds/_core/model/graphs/models/base.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -311,11 +311,7 @@ def _branch_is_relevant(self, branch: BranchArray) -> bool:
311311
return True
312312

313313
@abstractmethod
314-
def _in_branches(self, int_node_id: int) -> Generator[tuple[int, int], None, None]:
315-
"""Return all edges a node occurs in.
316-
Return a list of tuples with the source and target node id.
317-
These are internal node ids.
318-
"""
314+
def _in_branches(self, int_node_id: int) -> Generator[tuple[int, int], None, None]: ...
319315

320316
@abstractmethod
321317
def _get_connected(self, node_id: int, nodes_to_ignore: list[int], inclusive: bool = False) -> list[int]: ...

0 commit comments

Comments
 (0)