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

Skip to content

Commit 198eb48

Browse files
committed
FIX: misplaced parentheses
1 parent 35bec31 commit 198eb48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _backend_selection():
7575
loop, and if not switches to a compatible one.
7676
"""
7777
backend = rcParams['backend']
78-
if not (rcParams['backend_fallback'] or
78+
if (not rcParams['backend_fallback'] or
7979
backend not in _interactive_bk):
8080
return
8181
is_agg_backend = rcParams['backend'].endswith('Agg')

0 commit comments

Comments
 (0)