8000 STY: whitespace + remove unused imports · matplotlib/matplotlib@fa939b7 · GitHub
[go: up one dir, main page]

Skip to content

Commit fa939b7

Browse files
committed
STY: whitespace + remove unused imports
1 parent a51cfc8 commit fa939b7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

examples/tests/backend_driver_sgskip.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
from argparse import ArgumentParser
2424

2525
import matplotlib.rcsetup as rcsetup
26-
from matplotlib.cbook import Bunch, dedent
2726

2827

2928
all_backends = list(rcsetup.all_backends) # to leave the original list alone
@@ -42,7 +41,7 @@
4241
excluded_files = {'units': ['date_support.py'],
4342
'widgets': ['lasso_selector_demo_sgskip.py'],
4443
'event_handling': ['ginput_manual_clabel_sgskip.py',
45-
'ginput_demo_sgskip.py',]}
44+
'ginput_demo_sgskip.py']}
4645
# dict of files to not run on specific backend
4746
failbackend = {'svg': ['tex_demo.py'],
4847
'agg': ['hyperlinks.py'],
@@ -67,7 +66,6 @@ def drive(backend, directories, python=[sys.executable], switches=[]):
6766
# Clear the destination directory for the examples
6867
path = backend
6968
if os.path.exists(path):
70-
import glob
7169
for fname in os.listdir(path):
7270
os.unlink(os.path.join(path, fname))
7371
else:

0 commit comments

Comments
 (0)
0