- Notifications
You must be signed in to change notification settings - Fork674
fix: duplicate subparsers being added to argparse#2014
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
JohnVillalovos commentedMay 8, 2022
@nejch Seems like Python 3.11.0-beta.1 doesn't like what we are doing... |
JohnVillalovos commentedMay 8, 2022
I think this is the upstream commit: |
JohnVillalovos commentedMay 8, 2022
The PR upstream:python/cpython#18605 |
JohnVillalovos commentedMay 8, 2022
Probably should create an issue for this instead of my dummy PR 😊 |
d64b159 to14df327Compare14df327 to6f013d1Comparecodecov-commenter commentedMay 8, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov Report
@@ Coverage Diff @@## main #2014 +/- ##==========================================- Coverage 92.65% 92.62% -0.04%========================================== Files 78 78 Lines 4944 4949 +5 ==========================================+ Hits 4581 4584 +3- Misses 363 365 +2
Flags with carried forward coverage won't be shown.Click here to find out more.
|
Uh oh!
There was an error while loading.Please reload this page.
e812380 toc7dceddCompareUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Python 3.11 added an additional check in the argparse libary whichdetected duplicate subparsers being added. We had duplicate subparsersbeing added.Make sure we don't add duplicate subparsers.Closes:#2015
c7dcedd tof553fd3Compare
Uh oh!
There was an error while loading.Please reload this page.
Python 3.11 added an additional check in the argparse libary which
detected duplicate subparsers being added. We had duplicate subparsers
being added.
Make sure we don't add duplicate subparsers.
Closes:#2015