-
Notifications
You must be signed in to change notification settings - Fork 19
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
Make the Linter Yell At Us: Create lint.yml - testing lint options #26
base: main
Are you sure you want to change the base?
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.
Lintly has detected code quality issues in this pull request.
@@ -20,7 +21,7 @@ def open_and_clean(url): | |||
""" | |||
|
|||
temp_df = pd.read_csv(url, | |||
skiprows=69, | |||
skiprows = 69, |
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.
E251: unexpected spaces around keyword / parameter equals
@@ -20,7 +21,7 @@ def open_and_clean(url): | |||
""" | |||
|
|||
temp_df = pd.read_csv(url, | |||
skiprows=69, | |||
skiprows = 69, |
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.
E251: unexpected spaces around keyword / parameter equals
@@ -1,6 +1,7 @@ | |||
"""A second sample module to clean data.""" | |||
|
|||
import pandas as pd | |||
import numpy as np |
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.
F401: 'numpy as np' imported but unused
No description provided.