-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CLN: replace %s syntax with .format in core.panel #18315
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
CLN: replace %s syntax with .format in core.panel #18315
Conversation
@@ -1525,20 +1528,6 @@ def _extract_axis(self, data, axis=0, intersect=False): | |||
def _add_aggregate_operations(cls, use_numexpr=True): | |||
""" add the operations to the cls; evaluate the doc strings again """ | |||
|
|||
# doc strings substitors |
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.
is this replaced by something else?
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.
Added it back in @ L1580 😄
Codecov Report
@@ Coverage Diff @@
## master #18315 +/- ##
==========================================
- Coverage 91.37% 91.36% -0.01%
==========================================
Files 164 164
Lines 49854 49807 -47
==========================================
- Hits 45553 45508 -45
+ Misses 4301 4299 -2
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #18315 +/- ##
==========================================
- Coverage 91.37% 91.36% -0.01%
==========================================
Files 164 164
Lines 49854 49807 -47
==========================================
- Hits 45553 45508 -45
+ Misses 4301 4299 -2
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #18315 +/- ##
==========================================
- Coverage 91.37% 91.36% -0.01%
==========================================
Files 164 164
Lines 49854 49807 -47
==========================================
- Hits 45553 45508 -45
+ Misses 4301 4299 -2
Continue to review full report at Codecov.
|
thanks! |
git diff upstream/master -u -- "*.py" | flake8 --diff
Note, there's still a couple usages in this file in the
Appender
decorators, I'm planning on going through allappender
/shared_docs
usages in the near future to clean these up too.