Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
edasubert committed Dec 4, 2023
1 parent 76be0bd commit 431cd93
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions bluepysnap/edges/edge_population.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,8 @@ def _optimal_direction():
break

def _add_circuit_ids(self, its):
"""Generator comprehension completing the CircuitNodeId."""
"""Completes the CircuitNodeId."""

return (
(
CircuitNodeId(self.source.name, source_id),
Expand All @@ -530,8 +531,8 @@ def _add_circuit_ids(self, its):
)

def _add_edge_ids(self, its):
"""Generator comprehension completing the CircuitNodeId
and adding the CircuitEdgeIds to the iterator."""
"""Completes the CircuitNodeId and adds the CircuitEdgeIds."""

return (
(
CircuitNodeId(self.source.name, source_id),
Expand All @@ -542,8 +543,8 @@ def _add_edge_ids(self, its):
)

def _omit_edge_count(self, its):
"""Generator comprehension completing the CircuitNodeId
and removing the edge count."""
"""Completes the CircuitNodeId and removes the edge count."""

return (
(
CircuitNodeId(self.source.name, source_id),
Expand Down

0 comments on commit 431cd93

Please sign in to comment.