-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flake8v3 #139
Flake8v3 #139
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please see the inline comment. Most of these lamdas -> functions should be private actually, if you could quickly refactor them all.
@@ -288,18 +300,26 @@ def onDelete(self, event): # wxGlade: TemperatureSeriesPanel.<event_handler> | |||
self.fillList() | |||
return | |||
|
|||
def create_filename_order(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you wrapping this in a function? It doesn't seem like it needs to be.
self.filename_order = dict(zip(filenames, range(len(filenames)))) | ||
return | ||
|
||
def filename_sortkey(self, tf): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when we do turn lambdas into functions, mostly they should be private functions (just put an underscore at the beginning of the name).
This branch passes all tests