Skip to content

Commit e4b1249

Browse files
FeldrinHImpaler343
authored andcommitted
Fix flake8 lint error
1 parent 8c9b554 commit e4b1249

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/pyplot.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,8 @@ def isinteractive() -> bool:
554554
return matplotlib.is_interactive()
555555

556556

557-
# Note: The return type of ioff being AbstractContextManager instead of ExitStack is deliberate.
557+
# Note: The return type of ioff being AbstractContextManager
558+
# instead of ExitStack is deliberate.
558559
# See https://github.com/matplotlib/matplotlib/issues/27659
559560
# and https://github.com/matplotlib/matplotlib/pull/27667 for more info.
560561
def ioff() -> AbstractContextManager:
@@ -597,7 +598,8 @@ def ioff() -> AbstractContextManager:
597598
return stack
598599

599600

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

0 commit comments

Comments
 (0)