We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 764d5c0 commit 7827b47Copy full SHA for 7827b47
src/norwegianblue/cli.py
@@ -29,9 +29,10 @@
29
30
def main() -> None:
31
parser = argparse.ArgumentParser(
32
- description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter,
33
- suggest_on_error=True,
+ description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter
34
)
+ # Added in Python 3.14
35
+ parser.suggest_on_error = True
36
parser.add_argument(
37
"product",
38
nargs="*",
0 commit comments