Skip to content

Commit bb34a7d

Browse files
committed
Apply ruff --fix .
1 parent 327f293 commit bb34a7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mesa/experimental/components/matplotlib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ def portray(space):
9393
return out
9494

9595
# Determine border style based on space.torus
96-
border_style = 'solid' if not space.torus else (0, (5, 10))
96+
border_style = "solid" if not space.torus else (0, (5, 10))
9797

9898
# Set the border of the plot
9999
for spine in space_ax.spines.values():
100100
spine.set_linewidth(1.5)
101-
spine.set_color('black')
101+
spine.set_color("black")
102102
spine.set_linestyle(border_style)
103103

104104
width = space.x_max - space.x_min

0 commit comments

Comments
 (0)