Skip to content

Commit fa1ac1c

Browse files
authored
Flake8v1 (#137)
* move modules to top * remove extra #s * line length and extra #s * extra #s * modules to top * replace lambda function and line length * add # noqa: E501 * modules to top * fix lambda func
1 parent db8ce87 commit fa1ac1c

9 files changed

+62
-37
lines changed

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

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/usr/bin/python
22

3+
import os
4+
import re
5+
import sys
6+
37
"""Replace all equation marks in HTML file with <img> tag to display
48
corresponding PNG file. This assumes PNG files are in correct sequence.
59
Also fix any accented characters texinfo does not get right.
@@ -16,9 +20,6 @@
1620
##############################################################################
1721
# business
1822

19-
import os
20-
import re
21-
import sys
2223

2324
eqcnt = 0
2425

src/diffpy/pdfgui/gui/aboutdialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def onColumbiaLogo(self, event): # wxGlade: DialogAbout.<event_handler>
235235

236236
# end of class DialogAbout
237237

238-
# #### testing code ###########################################################
238+
# testing code ###########################################################
239239

240240
if __name__ == "__main__":
241241
app = wx.App()

src/diffpy/pdfgui/gui/mainframe.py

+31-17
Original file line numberDiff line numberDiff line change
@@ -758,31 +758,31 @@ def __menuBindings(self):
758758
# For recent items
759759
self.Bind(wx.EVT_MENU_RANGE, self.onMRUFile, id=wx.ID_FILE1, id2=wx.ID_FILE5)
760760

761-
## Edit Menu
761+
# Edit Menu
762762
self.Bind(wx.EVT_MENU, self.onDelete, id=self.deleteId)
763763
self.Bind(wx.EVT_MENU, self.onCopy, id=self.copyId)
764764
self.Bind(wx.EVT_MENU, self.onPaste, id=self.pasteId)
765765
self.Bind(wx.EVT_MENU, self.onPasteLink, id=self.pasteLinkId)
766766
self.Bind(wx.EVT_MENU, self.onPreferences, self.prefItem)
767767

768-
## View menu
768+
# View menu
769769
self.Bind(wx.EVT_MENU, self.onDefaultLayout, self.defaultLayoutItem)
770770
self.Bind(wx.EVT_MENU, self.onShowFit, self.showFitItem)
771771
self.Bind(wx.EVT_MENU, self.onShowPlot, self.showPlotItem)
772772
self.Bind(wx.EVT_MENU, self.onShowOutput, self.showOutputItem)
773773
self.Bind(wx.EVT_MENU, self.onShowJournal, self.showJournalItem)
774774

775-
## Fits Menu
775+
# Fits Menu
776776
self.Bind(wx.EVT_MENU, self.onNewFit, id=self.newFitId)
777777
self.Bind(wx.EVT_MENU, self.onRun, id=self.runFitId)
778778
self.Bind(wx.EVT_MENU, self.onStop, id=self.stopFitId)
779779
self.Bind(wx.EVT_MENU, self.onExportRes, id=self.exportResId)
780780
self.Bind(wx.EVT_MENU, self.onRSeries, self.rseriesItem)
781781
self.Bind(wx.EVT_MENU, self.onTSeries, self.tseriesItem)
782782
self.Bind(wx.EVT_MENU, self.onDSeries, self.dseriesItem)
783-
## Macros are inserted individually
783+
# Macros are inserted individually
784784

785-
## Phases Menu
785+
# Phases Menu
786786
self.Bind(wx.EVT_MENU, self.onInsPhase, id=self.newPhaseId)
787787
self.Bind(wx.EVT_MENU, self.onPrintBL, id=self.printBLId)
788788
self.Bind(wx.EVT_MENU, self.onPrintBA, id=self.printBAId)
@@ -791,16 +791,16 @@ def __menuBindings(self):
791791
self.Bind(wx.EVT_MENU, self.onPlotIStruct, id=self.plotIStructId)
792792
self.Bind(wx.EVT_MENU, self.onPlotFStruct, id=self.plotFStructId)
793793

794-
## Data Menu
794+
# Data Menu
795795
self.Bind(wx.EVT_MENU, self.onInsData, id=self.newDataId)
796796
self.Bind(wx.EVT_MENU, self.onExportPDF, id=self.exportFitPDFId)
797797

798-
## Calculations Menu
798+
# Calculations Menu
799799
self.Bind(wx.EVT_MENU, self.onInsCalc, id=self.newCalcId)
800800
self.Bind(wx.EVT_MENU, self.onRun, id=self.runCalcId)
801801
self.Bind(wx.EVT_MENU, self.onSaveCalc, id=self.exportCalcPDFId)
802802

803-
## Help Menu
803+
# Help Menu
804804
self.Bind(wx.EVT_MENU, self.onDocumentation, self.docItem)
805805
self.Bind(wx.EVT_MENU, self.onAbout, self.aboutItem)
806806
self.Bind(wx.EVT_MENU, self.onRequest, self.requestItem)
@@ -1529,11 +1529,11 @@ def disableSharedMenuItems(self, menu):
15291529
noPhases = False
15301530
if node:
15311531
phases = self.treeCtrlMain.GetPhases(node)
1532-
## No insert calculation if there are no phases
1532+
# No insert calculation if there are no phases
15331533
if len(phases) == 0:
15341534
noPhases = True
15351535

1536-
## No insert calculation if there are no phases
1536+
# No insert calculation if there are no phases
15371537
if noPhases:
15381538
menu.Enable(self.newCalcId, False)
15391539

@@ -1544,7 +1544,7 @@ def disableSharedMenuItems(self, menu):
15441544
clipbranchtype = None
15451545
cdata = self.treeCtrlMain.GetClipboard()
15461546

1547-
## No paste if nothing in the clipboard
1547+
# No paste if nothing in the clipboard
15481548
if cdata is None:
15491549
menu.Enable(self.pasteId, False)
15501550
menu.Enable(self.pasteLinkId, False)
@@ -1573,15 +1573,15 @@ def disableSharedMenuItems(self, menu):
15731573
menu.SetLabel(self.pasteId, pastetext)
15741574

15751575
# Disable certain entries based upon where we clicked.
1576-
## No copy, paste, or insert on multiple items.
1576+
# No copy, paste, or insert on multiple items.
15771577
if len(selections) > 1:
15781578
menu.Enable(self.copyId, False)
15791579
menu.Enable(self.pasteId, False)
15801580
menu.Enable(self.pasteLinkId, False)
15811581
menu.Enable(self.newDataId, False)
15821582
menu.Enable(self.newPhaseId, False)
15831583
menu.Enable(self.newCalcId, False)
1584-
## Disallow paste of fit if no items selected
1584+
# Disallow paste of fit if no items selected
15851585
elif not selections:
15861586
menu.Enable(self.copyId, False)
15871587
menu.Enable(self.deleteId, False)
@@ -1708,7 +1708,7 @@ def disableMainMenuItems(self):
17081708
if not cdata.Gcalc:
17091709
menu.Enable(self.exportFitPDFId, False)
17101710

1711-
## Check the run/stop status.
1711+
# Check the run/stop status.
17121712
if self.runningDict:
17131713
menu.Enable(self.newId, False)
17141714
menu.Enable(self.runCalcId, False)
@@ -1756,7 +1756,7 @@ def disableMainMenuItems(self):
17561756
return
17571757

17581758
# Shared menu items
1759-
## The bulk of the code for these methods is in the FitTree class.
1759+
# The bulk of the code for these methods is in the FitTree class.
17601760
def onNewFit(self, event):
17611761
"""Start a new fit tree.
17621762
@@ -2377,7 +2377,14 @@ def onExportNewStruct(self, event):
23772377
# branchname = self.treeCtrlMain.GetBranchName(node)
23782378
name = self.treeCtrlMain.GetItemText(node)
23792379
basename = ".".join(name.split(".")[:-1]) or name
2380-
matchstring = "PDFfit structure file (*.stru)|*.stru|Crystallographic Information File (*.cif)|*.cif|Protein Data Bank file (*.pdb)|*.pdb|Labeled coordinate file (*.xyz)|*.xyz|Raw corrdinate file (*.xyz)|*.xyz|AtomEye configuration file|*"
2380+
matchstring = (
2381+
"PDFfit structure file (*.stru)|*.stru|"
2382+
"Crystallographic Information File (*.cif)|*.cif|"
2383+
"Protein Data Bank file (*.pdb)|*.pdb|"
2384+
"Labeled coordinate file (*.xyz)|*.xyz|"
2385+
"Raw coordinate file (*.xyz)|*.xyz|"
2386+
"AtomEye configuration file|*"
2387+
)
23812388
d = wx.FileDialog(
23822389
None,
23832390
"Save as...",
@@ -2416,7 +2423,14 @@ def onExportStruct(self, event):
24162423
# branchname = self.treeCtrlMain.GetBranchName(node)
24172424
name = self.treeCtrlMain.GetItemText(node)
24182425
basename = ".".join(name.split(".")[:-1]) or name
2419-
matchstring = "PDFfit structure file (*.stru)|*.stru|Crystallographic Information File (*.cif)|*.cif|Protein Data Bank file (*.pdb)|*.pdb|Labeled coordinate file (*.xyz)|*.xyz|Raw corrdinate file (*.xyz)|*.xyz|AtomEye configuration file|*"
2426+
matchstring = (
2427+
"PDFfit structure file (*.stru)|*.stru|"
2428+
"Crystallographic Information File (*.cif)|*.cif|"
2429+
"Protein Data Bank file (*.pdb)|*.pdb|"
2430+
"Labeled coordinate file (*.xyz)|*.xyz|"
2431+
"Raw coordinate file (*.xyz)|*.xyz|"
2432+
"AtomEye configuration file|*"
2433+
)
24202434
d = wx.FileDialog(
24212435
None,
24222436
"Save as...",

src/diffpy/pdfgui/gui/parameterspanel.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def refresh(self):
116116

117117
nRows = len(self.parameters)
118118

119-
### update the grid
119+
# update the grid
120120
# remove all rows and create new ones
121121
self.grid_parameters.BeginBatch()
122122
gridrows = self.grid_parameters.GetNumberRows()
@@ -297,7 +297,7 @@ def popupMenu(self, window, x, y):
297297
menu.Destroy()
298298
return
299299

300-
##### Popup menu events ##################################################
300+
# Popup menu events ##################################################
301301
def onPopupFill(self, event):
302302
"""Fills cells selected in the grid with a new value"""
303303

@@ -402,7 +402,7 @@ def onPopupRenameParameters(self, event):
402402
event.Skip()
403403
return
404404

405-
##### end of Popup menu events ###########################################
405+
# end of Popup menu events ###########################################
406406

407407
def onApplyParameters(self, event): # wxGlade: ParametersPanel.<event_handler>
408408
self.fit.applyParameters()
@@ -439,7 +439,7 @@ def fillCells(self, indices, value):
439439

440440
# end of class ParametersPanel
441441

442-
##### testing code ############################################################
442+
# testing code ############################################################
443443
if __name__ == "__main__":
444444

445445
class MyFrame(wx.Frame):
@@ -481,4 +481,4 @@ def onInit(self):
481481

482482
app = MyApp(0)
483483
app.MainLoop()
484-
##### end of testing code #####################################################
484+
# end of testing code #####################################################

src/diffpy/pdfgui/gui/pdfguiglobals.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
from pkg_resources import Requirement, resource_filename
2121

22+
from diffpy.pdfgui.gui import debugoptions
23+
2224
# Name of the program
2325
name = "PDFgui"
2426
# Maximum number of files to be remembered
@@ -76,7 +78,6 @@ def iconpath(iconfilename):
7678
cmdargs = []
7779

7880
# debugging options:
79-
from diffpy.pdfgui.gui import debugoptions
8081

8182
dbopts = debugoptions.DebugOptions()
8283

src/diffpy/pdfgui/gui/tooltips.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@
1717
"""
1818

1919

20+
def isalias(s):
21+
return s[1:-1] and s[:: len(s) - 1] == "{}" and s[1:-1].replace("_", "").isalnum()
22+
23+
2024
def _expand_tooltip_aliases(ttps):
2125
"Replace aliased equivalent values {other} in tooltip strings."
22-
isalias = lambda s: (s[1:-1] and s[:: len(s) - 1] == "{}" and s[1:-1].replace("_", "").isalnum())
2326
for n, t in list(ttps.items()):
2427
if not isalias(t):
2528
continue
@@ -79,7 +82,10 @@ def _expand_tooltip_aliases(ttps):
7982

8083

8184
dopingseriespanel = {
82-
# 'instructionsLabel' : '', # StaticText "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."
85+
# 'instructionsLabel' : '', # StaticText "Select a fit from the tree on the left then add
86+
# datasets and assign\ndoping elements and values below. If you
87+
# have not set up a fit to be\nthe template for the series, hit
88+
# cancel and rerun this macro once a\nfit has been created."
8389
# 'labelBaseElement' : '', # StaticText "Base element"
8490
# 'textCtrlBaseElement' : '', # TextCtrl
8591
# 'labelDopant' : '', # StaticText "Dopant"
@@ -175,7 +181,9 @@ def _expand_tooltip_aliases(ttps):
175181

176182

177183
temperatureseriespanel = {
178-
# 'instructionsLabel' : '', # StaticText "Select a fit from the tree on the left then add datasets and assign\ntemperatues below. If you have not set up a fit to be the template\nfor the series, hit cancel and rerun this macro once a fit has been\ncreated."
184+
# 'instructionsLabel' : '', # StaticText "Select a fit from the tree on the left
185+
# then add datasets and assign\ntemperatues below. If you have not set up a fit to
186+
# be the template\nfor the series, hit cancel and rerun this macro once a fit has been\ncreated."
179187
"listCtrlFiles": "Click header to sort by temperature", # AutoWidthListCtrl
180188
# 'buttonUp' : '', # BitmapButton
181189
# 'buttonDown' : '', # BitmapButton

src/diffpy/pdfgui/gui/windowperspective.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616
"""This contains the default perspective for the gui window."""
1717

18-
default = "layout2|name=dseries;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=calculation;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=welcome;caption=;state=768;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=adddata;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=serverconfig;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=addphase;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=blank;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=phase;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=dataset;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=preferences;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=fit;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=rseries;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=tseries;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=outputPanel;caption=PDFfit2 Output;state=10487804;dir=3;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=40;minw=200;minh=40;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=treeCtrlMain;caption=Fit Tree;state=10487804;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=200;besth=100;minw=200;minh=40;maxw=-1;maxh=-1;floatx=471;floaty=730;floatw=208;floath=124|name=plotPanel;caption=Plot Control;state=10487804;dir=4;layer=0;row=0;pos=1;prop=100000;bestw=200;besth=250;minw=200;minh=150;maxw=-1;maxh=-1;floatx=337;floaty=393;floatw=208;floath=274|name=journalPanel;caption=Project Journal;state=10487807;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=450;besth=450;minw=200;minh=200;maxw=-1;maxh=-1;floatx=393;floaty=113;floatw=450;floath=450|dock_size(3,0,0)=59|dock_size(4,0,0)=202|dock_size(5,0,0)=362|"
18+
default = "layout2|name=dseries;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=calculation;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=welcome;caption=;state=768;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=adddata;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=serverconfig;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=addphase;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=blank;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=phase;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=dataset;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=preferences;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=fit;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=rseries;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=tseries;caption=;state=770;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=380;minw=190;minh=200;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=outputPanel;caption=PDFfit2 Output;state=10487804;dir=3;layer=0;row=0;pos=0;prop=100000;bestw=400;besth=40;minw=200;minh=40;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=treeCtrlMain;caption=Fit Tree;state=10487804;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=200;besth=100;minw=200;minh=40;maxw=-1;maxh=-1;floatx=471;floaty=730;floatw=208;floath=124|name=plotPanel;caption=Plot Control;state=10487804;dir=4;layer=0;row=0;pos=1;prop=100000;bestw=200;besth=250;minw=200;minh=150;maxw=-1;maxh=-1;floatx=337;floaty=393;floatw=208;floath=274|name=journalPanel;caption=Project Journal;state=10487807;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=450;besth=450;minw=200;minh=200;maxw=-1;maxh=-1;floatx=393;floaty=113;floatw=450;floath=450|dock_size(3,0,0)=59|dock_size(4,0,0)=202|dock_size(5,0,0)=362|" # noqa: E501

src/diffpy/pdfgui/gui/wxextensions/validators.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
# See LICENSE.txt for license information.
1313
#
1414
##############################################################################
15+
import string
16+
17+
import wx
1518

1619
"""This module contains TextValidator, which is an input validator for the
1720
wxTextCtrl. See the wxPython documentation for wxTextCtrl for more about text
@@ -23,10 +26,6 @@
2326
DIGIT_ONLY = 2
2427
FLOAT_ONLY = 3
2528

26-
import string
27-
28-
import wx
29-
3029

3130
class TextValidator(wx.Validator):
3231
"""This validator is designed to check text input for wxTextCtrls. (It might

src/diffpy/pdfgui/tests/testaboutdialog.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,13 @@ def _clickbutton(self, button):
4343
self.dialog.ProcessEvent(e)
4444
return
4545

46+
def set_url(self, u):
47+
setattr(self, "url", u)
48+
4649
def test_LogoClicks(self):
4750
"Check handling of clicks on various logos"
4851
d = self.dialog
49-
stealurl = lambda u: setattr(self, "url", u)
50-
with overridewebbrowser(stealurl):
52+
with overridewebbrowser(self.set_url):
5153
self._clickbutton(d.bitmap_button_nsf)
5254
self.assertTrue(self.url.endswith("www.nsf.gov"))
5355
self._clickbutton(d.bitmap_button_danse)

0 commit comments

Comments
 (0)