Skip to content

Commit 288ec84

Browse files
committed
MAINT: clean unused imports.
1 parent a34fd05 commit 288ec84

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/compareC60PDFs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import sys
88
import os
9-
from matplotlib.pyplot import plot, show, clf, draw
9+
from matplotlib.pyplot import plot, show, clf
1010
from diffpy.structure import Structure
1111
from diffpy.srreal.pdfcalculator import PDFCalculator, DebyePDFCalculator
1212

examples/compareC60PDFs_objcryst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The C60 molecule are stored in a pyobjcryst object.
55
"""
66

7-
from matplotlib.pyplot import plot, show, clf, draw
7+
from matplotlib.pyplot import plot, show, clf
88
from diffpy.structure import Structure
99
from pyobjcryst.crystal import Crystal
1010
from pyobjcryst.molecule import Molecule

examples/parallelPDF.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
print("Time ratio: %g" % (t0 / t1))
7272

7373
# plot both results and the difference curve
74-
from matplotlib.pyplot import plot, show, clf, draw
74+
from matplotlib.pyplot import plot, show, clf
7575
clf()
7676
gd = g0 - g1
7777
plot(r0, g0, r1, g1, r0, gd - 3)

0 commit comments

Comments
 (0)