Skip to content

Commit

Permalink
black fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Helveg committed Jul 31, 2023
1 parent c94d466 commit 33b5276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bsb/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ def get_storage_diagram(self):
for ps in self.get_placement_sets():
dot += f'\n {ps.tag}[label="{ps.tag} ({len(ps)} {ps.cell_type.name})"]'
for conn in self.get_connectivity_sets():
dot += f'\n {conn.pre_type.name} -> {conn.post_type.name}'
dot += f"\n {conn.pre_type.name} -> {conn.post_type.name}"
dot += f'[label="{conn.tag} ({len(conn)})"];'

dot += "\n}\n"
Expand Down

0 comments on commit 33b5276

Please sign in to comment.