Skip to content

Commit c9ecd94

Browse files
authored
Flake8v2 (#138)
* fix not in * fix lambda functions * remove # * remove lambda func * modules to top * mod to top * line length and import and #s * fix line length and #s * comment unused var, fix imports and #s * modules to top and inline comment fix * def functions within function to pass tests * move functions outside of class
1 parent fa1ac1c commit c9ecd94

10 files changed

+64
-36
lines changed

src/diffpy/pdfgui/control/fitstructure.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def _restoreAtomConstraints(self, acd):
252252
acd -- dictionary obtained from _popAtomConstraints()
253253
"""
254254
for i, a in enumerate(self.initial):
255-
if not a in acd:
255+
if a not in acd:
256256
continue
257257
# there are some constraints for atom a
258258
siteindex = i + 1

src/diffpy/pdfgui/control/organizer.py

+10-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@
2020
from diffpy.pdfgui.control.pdfcomponent import PDFComponent
2121

2222

23+
# Search datasets for spdiameter and its constraints
24+
def spd_assigned(ds):
25+
return bool(ds.spdiameter)
26+
27+
28+
def spd_constrained(ds):
29+
return "spdiameter" in ds.constraints
30+
31+
2332
class Organizer(PDFComponent):
2433
"""Base class for Fitting. It holds separate lists of datasets,
2534
strucs and calculations
@@ -241,9 +250,7 @@ def __forward_spdiameter(self):
241250
for stru in self.strucs:
242251
if stru.getvar("spdiameter"):
243252
return
244-
# Search datasets for spdiameter and its constraints
245-
spd_assigned = lambda ds: bool(ds.spdiameter)
246-
spd_constrained = lambda ds: "spdiameter" in ds.constraints
253+
247254
# Figure out the value and constraint for spdiameter.
248255
# The highest priority is for a dataset with constrained spdiameter,
249256
# then for dataset with assigned spdiameter and finally from

src/diffpy/pdfgui/control/pdfguicontrol.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, gui=None):
5858
self.fittingQueue = []
5959
self.currentFitting = None
6060
self.queueManager = PDFGuiControl.QueueManager(self)
61-
##self.startQueue()
61+
# self.startQueue()
6262

6363
def reset(self):
6464
"""clean up for a new project"""

src/diffpy/pdfgui/control/plotter.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@ def _buildStyle(plotter, name, group, yNames):
129129
return style
130130

131131

132+
def deblank(s):
133+
"""Remove all whitespace from the given string."""
134+
return "".join(s.split())
135+
136+
132137
class Plotter(PDFComponent):
133138
"""Plots a single graph. It can have multiple curves."""
134139

@@ -622,7 +627,6 @@ def export(self, filename):
622627
header = "# Generated on %s by %s.\n" % (time.ctime(), getpass.getuser())
623628
header += "# This file was created by PDFgui.\n"
624629
outfile.write(header)
625-
deblank = lambda s: "".join(s.split())
626630
xylist = [(c.x, c.y) for c in self.curves]
627631
xynames = [(_transName(c.xStr), deblank(c.name)) for c in self.curves]
628632
_exportCompactData(outfile, xylist, xynames)

src/diffpy/pdfgui/doc/manual/extractEquations.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/python
2+
import os
3+
import shutil
4+
import sys
25

36
"""Read one or more texinfo files and extract any equations marked
47
in the code with '@EquationMark' macro as PNG files to the images
@@ -31,10 +34,6 @@
3134
##############################################################################
3235
# business
3336

34-
import os
35-
import shutil
36-
import sys
37-
3837

3938
def loadEquations():
4039
"""Search for equation codes preceded by @EquationMark macro.

src/diffpy/pdfgui/doc/tutorial/tui_mno_bond_lengths.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,17 @@
77
are plotted versus temperature and saved to "mno-bond-lengths.dat" file.
88
"""
99

10+
import pylab
11+
12+
from diffpy.pdffit2 import PdfFit
13+
14+
# Import tui (Text User Interface) functions from diffpy.pdfgui
15+
from diffpy.pdfgui import tui
16+
1017
# PDFgui project file
1118
project_file = "lmo-template.ddp3"
1219
output_file = "mno-bond-lengths.dat"
1320

14-
# Import tui (Text User Interface) functions from diffpy.pdfgui
15-
from diffpy.pdfgui import tui
1621

1722
# load project file
1823
prj = tui.LoadProject(project_file)
@@ -21,7 +26,7 @@
2126
# using diffpy.pdffit2
2227

2328
# Create a PDF calculator object that will be used in that function.
24-
from diffpy.pdffit2 import PdfFit
29+
2530

2631
pf = PdfFit()
2732

@@ -69,7 +74,6 @@ def shortestBond_MnO(stru):
6974
# Plot results using matplotlib; pylab is a part of matplotlib that
7075
# provides MATLAB-like plotting functions.
7176

72-
import pylab
7377

7478
pylab.plot(temperatures, MnO_bond_lengths, "o--")
7579
pylab.title("Data from refined phases in PDFgui project %s" % project_file)

src/diffpy/pdfgui/gui/dopingseriespanel.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import os.path
2020
import re
21-
import sys
2221

2322
import wx
2423

@@ -41,7 +40,10 @@ def __init__(self, *args, **kwds):
4140
self.instructionsLabel = wx.StaticText(
4241
self,
4342
wx.ID_ANY,
44-
"Select a fit from the tree on the left then add datasets and assign\ndoping elements and values below. If you have not set up a fit to be\nthe template for the series, hit cancel and rerun this macro once a\nfit has been created.",
43+
"Select a fit from the tree on the left then add datasets and "
44+
+ "assign\ndoping elements and values below. "
45+
+ "If you have not set up a fit to be\nthe template for the series, "
46+
+ "hit cancel and rerun this macro once a\nfit has been created.",
4547
)
4648
self.instructionsLabel.SetFont(
4749
wx.Font(
@@ -210,7 +212,11 @@ def onAdd(self, event): # wxGlade: DopingSeriesPanel.<event_handler>
210212
if not dir:
211213
dir = self.mainFrame.workpath
212214

213-
matchstring = "PDF data files (*.gr)|*.gr|PDF fit files (*.fgr)|*.fgr|PDF fit files (*.fit)|*.fit|PDF calculation files (*.cgr)|*.cgr|PDF calculation files (*.calc)|*.calc|All Files|*"
215+
matchstring = (
216+
"PDF data files (*.gr)|*.gr|PDF fit files (*.fgr)|*.fgr|PDF fit files (*.fit)|"
217+
"*.fit|PDF calculation files (*.cgr)|*.cgr|PDF calculation files (*.calc)|*.calc|"
218+
"All Files|*"
219+
)
214220
d = wx.FileDialog(
215221
None,
216222
"Choose files",
@@ -304,7 +310,7 @@ def onCancel(self, event): # wxGlade: DopingSeriesPanel.<event_handler>
304310
self.mainFrame.switchRightPanel("blank")
305311
return
306312

307-
## Utility functions
313+
# Utility functions
308314
def checkConfiguration(self):
309315
"""Verify that the dopant and base are elements.
310316
@@ -340,7 +346,7 @@ def fillList(self):
340346
self.listCtrlFiles.SetItem(index, 1, shortname)
341347
return
342348

343-
## Needed by mainframe
349+
# Needed by mainframe
344350
def treeSelectionUpdate(self, node):
345351
"""Set the current fit when the tree selection changes."""
346352
nodetype = self.treeCtrlMain.GetNodeType(node)
@@ -349,7 +355,7 @@ def treeSelectionUpdate(self, node):
349355
self.refresh()
350356
return
351357

352-
## Required by PDFPanel
358+
# Required by PDFPanel
353359
def refresh(self):
354360
"""Block out OK button if there is no fit.
355361

src/diffpy/pdfgui/gui/errorreportdialog.py

+8-5
Original file line numberDiff line numberDiff line change
@@ -207,15 +207,18 @@ def _extractSearchTerms(tbtext):
207207
return rv
208208

209209

210-
##### testing code ############################################################
210+
# testing code ############################################################
211211

212212
_EXAMPLE_TRACEBACK = r"""
213213
Traceback (most recent call last):
214-
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\diffpy\pdfgui\gui\errorwrapper.py", line 60, in _f
214+
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\
215+
diffpy\pdfgui\gui\errorwrapper.py", line 60, in _f
215216
return func(*args, **kwargs)
216-
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\diffpy\pdfgui\gui\mainframe.py", line 2176, in onSave
217+
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\
218+
diffpy\pdfgui\gui\mainframe.py", line 2176, in onSave
217219
self.control.save(self.fullpath)
218-
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\diffpy\pdfgui\control\pdfguicontrol.py", line 507, in save
220+
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\
221+
diffpy\pdfgui\control\pdfguicontrol.py", line 507, in save
219222
self.projfile = projfile.encode('ascii')
220223
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position 115: ordinal not in range(128)
221224
""".strip()
@@ -242,4 +245,4 @@ def test(self):
242245
app = MyApp(0)
243246
app.MainLoop()
244247

245-
##### end of testing code #####################################################
248+
# end of testing code #####################################################

src/diffpy/pdfgui/gui/errorreportdialog_control_fix.py

+13-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717
# generated by wxGlade 0.9.3 on Fri Jul 19 16:01:37 2019
1818

1919
import re
20-
import webbrowser
2120

2221
#
2322
# "Bug report" Dialog
2423
#
2524
import wx
2625
import wx.html
2726

27+
from .errorreportdialog import ErrorReportDialog
28+
2829
# Constants ------------------------------------------------------------------
2930

3031
ISSUESTRACKER = "https://github.com/diffpy/diffpy.pdfgui/issues"
@@ -77,7 +78,7 @@ def __do_layout(self):
7778
# begin wxGlade: ErrorReportDialog.__do_layout
7879
sizer_main = wx.BoxSizer(wx.VERTICAL)
7980
sizer_buttons = wx.BoxSizer(wx.HORIZONTAL)
80-
sizer_log = wx.BoxSizer(wx.VERTICAL)
81+
# sizer_log = wx.BoxSizer(wx.VERTICAL)
8182
sizer_label = wx.BoxSizer(wx.HORIZONTAL)
8283
sizer_label.Add(self.label_header, 1, wx.EXPAND, 5)
8384
sizer_main.Add(sizer_label, 1, wx.ALL | wx.EXPAND, 5)
@@ -141,17 +142,21 @@ def _extractSearchTerms(tbtext):
141142
return rv
142143

143144

144-
##### testing code ############################################################
145+
# testing code ############################################################
145146

146147
_EXAMPLE_TRACEBACK = r"""
147148
Traceback (most recent call last):
148-
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\diffpy\pdfgui\gui\errorwrapper.py", line 60, in _f
149+
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\
150+
\diffpy\pdfgui\gui\errorwrapper.py", line 60, in _f
149151
return func(*args, **kwargs)
150-
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\diffpy\pdfgui\gui\mainframe.py", line 2176, in onSave
152+
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\
153+
\diffpy\pdfgui\gui\mainframe.py", line 2176, in onSave
151154
self.control.save(self.fullpath)
152-
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\diffpy\pdfgui\control\pdfguicontrol.py", line 507, in save
155+
File "C:\DiffPy\Python25\lib\site-packages\diffpy.pdfgui-1.0_r3067_20090410-py2.5.egg\
156+
\diffpy\pdfgui\control\pdfguicontrol.py", line 507, in save
153157
self.projfile = projfile.encode('ascii')
154-
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position 115: ordinal not in range(128)
158+
UnicodeDecodeError: 'ascii' codec can't decode byte 0xb0 in position 115: \
159+
ordinal not in range(128)
155160
""".strip()
156161

157162

@@ -176,4 +181,4 @@ def test(self):
176181
app = MyApp(0)
177182
app.MainLoop()
178183

179-
##### end of testing code #####################################################
184+
# end of testing code #####################################################

src/diffpy/pdfgui/gui/extendedplotframe.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
import os.path
2121

2222
import matplotlib
23-
24-
matplotlib.use("WXAgg")
2523
import wx
2624
from matplotlib.artist import setp
2725
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
@@ -32,6 +30,8 @@
3230
from diffpy.pdfgui.gui.pdfguiglobals import iconpath
3331
from diffpy.pdfgui.gui.wxextensions import wx12
3432

33+
matplotlib.use("WXAgg")
34+
3535
DATA_SAVE_ID = wx12.NewIdRef()
3636

3737

@@ -303,7 +303,7 @@ def __translateStyles(self, style):
303303
symbolSize = style["symbolSize"]
304304
symbolColor = colorDict.get(style["symbolColor"], "k")
305305
properties.update(
306-
{ #'linewidth':0.0, # doesn't affect any
306+
{ # 'linewidth':0.0, # doesn't affect any
307307
"markerfacecolor": symbolColor,
308308
"markeredgecolor": color,
309309
"marker": symbol,

0 commit comments

Comments
 (0)