-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
PR: Add disambiguation functionality to the Python console #3854
Conversation
return ima.icon('console') | ||
|
||
def get_focus_widget(self): | ||
""" | ||
Return the widget to give focus to when | ||
this plugin's dockwidget is raised on top-level | ||
this plugin's dockwidget is raised on top-level. |
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.
To fix this docstyle error you need to rewrite this docstring as
"""Return the widget to give focus to when
this plugin's dockwidget is raised on top-level"""
this plugin's dockwidget is raised on top-level | ||
""" | ||
"""Return the widget to give focus to when | ||
this plugin's dockwidget is raised on top-level""" |
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.
Let's change it to """Return the widget to give focus to."""
to fix the style error.
Since style tests are now passing, please squash the last four commits into one and push again :-) |
2da58f5
to
be0a64c
Compare
Looks good to me, thanks @dalthviz! |
Fixes #1165