We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb42e05 commit 3020b8dCopy full SHA for 3020b8d
doc/source/conf.py
@@ -236,7 +236,7 @@
236
if ".dev" in version:
237
switcher_version = "dev"
238
elif "rc" in version:
239
- switcher_version = version.split("rc")[0] + " (rc)"
+ switcher_version = version.split("rc", maxsplit=1)[0] + " (rc)"
240
241
html_theme_options = {
242
"external_links": [],
pyproject.toml
@@ -97,7 +97,6 @@ disable = [
97
"unneeded-not",
98
"use-implicit-booleaness-not-comparison",
99
"use-implicit-booleaness-not-len",
100
- "use-maxsplit-arg",
101
"use-sequence-for-iteration",
102
"useless-import-alias",
103
"wrong-import-order",
0 commit comments