Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d762969

Browse files
committed
MNT: fix spelling of local variable
1 parent d66a760 commit d762969

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/backend_bases.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1669,11 +1669,11 @@ def _fix_ipython_backend2gui(cls):
16691669
if _is_non_interactive_terminal_ipython(ip):
16701670
pass
16711671
else:
1672-
was_interacive = mpl.is_interactive()
1672+
was_interactive = mpl.is_interactive()
16731673
try:
16741674
ip.enable_matplotlib()
16751675
finally:
1676-
mpl.interactive(was_interacive)
1676+
mpl.interactive(was_interactive)
16771677

16781678
finally:
16791679
mpl.rcParamsOrig["backend"] = orig_origbackend

0 commit comments

Comments
 (0)