-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
Linting #5790
Linting #5790
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,9 +28,6 @@ const defaultProps = { | |
class ExploreResultsButton extends React.PureComponent { | ||
constructor(props) { | ||
super(props); | ||
this.state = { | ||
hints: [], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hints is unused in the component |
||
}; | ||
this.visualize = this.visualize.bind(this); | ||
this.onClick = this.onClick.bind(this); | ||
this.getInvalidColumns = this.getInvalidColumns.bind(this); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,10 @@ | |
Create Date: 2016-05-27 15:03:32.980343 | ||
|
||
""" | ||
from __future__ import absolute_import | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: puts these inline There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Somehow it's not the standard and I think the linter would complain. Not quite sure why though. |
||
from __future__ import division | ||
from __future__ import print_function | ||
from __future__ import unicode_literals | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '1226819ee0e3' | ||
|
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.
Hints was unused in the component.