-
Notifications
You must be signed in to change notification settings - Fork 1
fix E402 E711 in datacontainer, imageplot, and live.py #9
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
Conversation
| Enum, | ||
| Event, | ||
| File, | ||
| Float, |
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.
Delete unused imports
cadenmyers13
left a comment
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.
see inline
dpx/srxplanargui/imageplot.py
Outdated
| "srxconfig", | ||
| desc="Mask the pixels too bright or too dark compared to the average intensity at the similar diffraction angle", | ||
| desc="Mask the pixels too bright or too dark compared to" | ||
| + "the average intensity at the similar diffraction angle", |
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.
Similar thing with the extra white space (+ " the...)
dpx/srxplanargui/imageplot.py
Outdated
| self.plot.title = "Click: add a vertex; <Ctrl>+Click: remove a vertex; \n <Enter>: finish the selection" | ||
| self.plot.title = ("Click: add a vertex;" | ||
| + "<Ctrl>+Click: remove a vertex;" | ||
| + "\n <Enter>: finish the selection") |
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.
If its wrapped in parenths you might not need +, double check this though.
|
@cadenmyers13 Have changed for the lavel and plot.title str, ready for review |
|
@sbillinge ready for review |
|
same as #8 , this seems to be from the wrong base. Please can you close this and redo it? |
|
Close #9 for wrong base |
@cadenmyers13 Ready for review
Fix module not used (E402) & cond comparison legacy issue (E711)