Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 12, 2024
1 parent 238f32b commit bb5862c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dolphin scripts/Entrance Randomizer/lib/graph_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,19 +170,19 @@ def create_edges(
else:
output_text += edge_text(
pairing[0][0], pairing[1][1],
counter, Direction.TWOWAY, None, LineType.SOLID
counter, Direction.TWOWAY, None, LineType.SOLID,
)
counter += 1
for pairing in connections_one_way:
output_text += edge_text(
pairing[0][0], pairing[1][1],
counter, Direction.ONEWAY, None, LineType.DASHED
counter, Direction.ONEWAY, None, LineType.DASHED,
)
counter += 1
for pairing in connections_closed_door:
output_text += edge_text(
pairing[1][1], pairing[0][0],
counter, Direction.ONEWAY, "#ff0000", LineType.SOLID
counter, Direction.ONEWAY, "#ff0000", LineType.SOLID,
)
counter += 1
return output_text
Expand Down

0 comments on commit bb5862c

Please sign in to comment.