Skip to content

Commit 17730c4

Browse files
committed
black
1 parent 1d40b47 commit 17730c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fastplotlib/ui/right_click_menus/_standard_menu.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ def update(self):
9898
# toggles to flip axes cameras
9999
for axis in ["x", "y", "z"]:
100100
scale = getattr(self.get_subplot().camera.local, f"scale_{axis}")
101-
changed, flip = imgui.menu_item(f"Flip {axis} axis", "", bool(scale < 0))
101+
changed, flip = imgui.menu_item(
102+
f"Flip {axis} axis", "", bool(scale < 0)
103+
)
102104

103105
if changed:
104106
flip_axis(self.get_subplot(), axis, flip)

0 commit comments

Comments
 (0)