We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 327f293 commit bb34a7dCopy full SHA for bb34a7d
mesa/experimental/components/matplotlib.py
@@ -93,12 +93,12 @@ def portray(space):
93
return out
94
95
# Determine border style based on space.torus
96
- border_style = 'solid' if not space.torus else (0, (5, 10))
+ border_style = "solid" if not space.torus else (0, (5, 10))
97
98
# Set the border of the plot
99
for spine in space_ax.spines.values():
100
spine.set_linewidth(1.5)
101
- spine.set_color('black')
+ spine.set_color("black")
102
spine.set_linestyle(border_style)
103
104
width = space.x_max - space.x_min
0 commit comments