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 2500ea9 commit 0dd9ee7Copy full SHA for 0dd9ee7
bin/codebasin
@@ -41,7 +41,13 @@ def guess_project_name(config_path):
41
def main():
42
# Read command-line arguments
43
parser = argparse.ArgumentParser(
44
- description="Code Base Investigator v" + str(version),
+ description="Code Base Investigator " + str(version),
45
+ )
46
+ parser.add_argument(
47
+ "--version",
48
+ action="version",
49
+ version=f"Code Base Investigator {version}",
50
+ help="Display version information and exit.",
51
)
52
deprecated_args = parser.add_argument_group("deprecated options")
53
deprecated_args.add_argument(
0 commit comments