Skip to content

Commit

Permalink
STYLE: fix pylint use-maxsplit-arg warning (pandas-dev#49369)
Browse files Browse the repository at this point in the history
  • Loading branch information
Moisan authored and noatamir committed Nov 9, 2022
1 parent d8e1b9f commit faec290
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
if ".dev" in version:
switcher_version = "dev"
elif "rc" in version:
switcher_version = version.split("rc")[0] + " (rc)"
switcher_version = version.split("rc", maxsplit=1)[0] + " (rc)"

html_theme_options = {
"external_links": [],
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ disable = [
"unneeded-not",
"use-implicit-booleaness-not-comparison",
"use-implicit-booleaness-not-len",
"use-maxsplit-arg",
"use-sequence-for-iteration",
"useless-import-alias",
"wrong-import-order",
Expand Down

0 comments on commit faec290

Please sign in to comment.