-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: replace %s syntax /w .format in plotting, stats, tseries #18010
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
Codecov Report
@@ Coverage Diff @@
## master #18010 +/- ##
==========================================
- Coverage 91.24% 91.22% -0.02%
==========================================
Files 163 163
Lines 50168 50168
==========================================
- Hits 45777 45768 -9
- Misses 4391 4400 +9
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #18010 +/- ##
==========================================
- Coverage 91.4% 89.21% -2.19%
==========================================
Files 163 163
Lines 50064 50064
==========================================
- Hits 45759 44665 -1094
- Misses 4305 5399 +1094
Continue to review full report at Codecov.
|
pandas/_version.py
Outdated
print(e) | ||
return None | ||
else: | ||
if verbose: | ||
print("unable to find command, tried %s" % (commands,)) | ||
print("unable to find command, tried {commands}".format( | ||
commands=commands,)) | ||
return None | ||
stdout = p.communicate()[0].strip() | ||
if sys.version_info[0] >= 3: | ||
stdout = stdout.decode() | ||
if p.returncode != 0: | ||
if verbose: |
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.
revert this file it is auto generated
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.
rather versioneer creates it; would rather use a newer versioneer
can u rebase |
pandas/tseries/offsets.py
Outdated
@@ -265,6 +265,22 @@ def _params(self): | |||
params = tuple([str(self.__class__)] + attrs) | |||
return params | |||
|
|||
def __repr__(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.
remove this; its a rebase artifact
thanks! |
1 similar comment
thanks! |
Progress towards #16130
git diff upstream/master -u -- "*.py" | flake8 --diff