Skip to content

Commit 2f56a2a

Browse files
committed
Fix flake8 lint error
1 parent 7a1461c commit 2f56a2a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/pyplot.py

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

558558

559-
# Note: The return type of ioff being AbstractContextManager instead of ExitStack is deliberate.
559+
# Note: The return type of ioff being AbstractContextManager
560+
# instead of ExitStack is deliberate.
560561
# See https://github.com/matplotlib/matplotlib/issues/27659
561562
# and https://github.com/matplotlib/matplotlib/pull/27667 for more info.
562563
def ioff() -> AbstractContextManager:
@@ -599,7 +600,8 @@ def ioff() -> AbstractContextManager:
599600
return stack
600601

601602

602-
# Note: The return type of ion being AbstractContextManager instead of ExitStack is deliberate.
603+
# Note: The return type of ion being AbstractContextManager
604+
# instead of ExitStack is deliberate.
603605
# See https://github.com/matplotlib/matplotlib/issues/27659
604606
# and https://github.com/matplotlib/matplotlib/pull/27667 for more info.
605607
def ion() -> AbstractContextManager:

0 commit comments

Comments
 (0)