Skip to content

Commit f49c0e3

Browse files
committed
Actually fix flake8 lint
1 parent 2f56a2a commit f49c0e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/pyplot.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -556,9 +556,9 @@ def isinteractive() -> bool:
556556
return matplotlib.is_interactive()
557557

558558

559-
# Note: The return type of ioff being AbstractContextManager
559+
# Note: The return type of ioff being AbstractContextManager
560560
# instead of ExitStack is deliberate.
561-
# See https://github.com/matplotlib/matplotlib/issues/27659
561+
# See https://github.com/matplotlib/matplotlib/issues/27659
562562
# and https://github.com/matplotlib/matplotlib/pull/27667 for more info.
563563
def ioff() -> AbstractContextManager:
564564
"""
@@ -600,9 +600,9 @@ def ioff() -> AbstractContextManager:
600600
return stack
601601

602602

603-
# Note: The return type of ion being AbstractContextManager
603+
# Note: The return type of ion being AbstractContextManager
604604
# instead of ExitStack is deliberate.
605-
# See https://github.com/matplotlib/matplotlib/issues/27659
605+
# See https://github.com/matplotlib/matplotlib/issues/27659
606606
# and https://github.com/matplotlib/matplotlib/pull/27667 for more info.
607607
def ion() -> AbstractContextManager:
608608
"""

0 commit comments

Comments
 (0)