Skip to content

Commit 4569df1

Browse files
JonZeollaclaude
andcommitted
fix: wrap add_argument call to satisfy ruff format line length
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0375dba commit 4569df1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • {{cookiecutter.project_name|replace(" ", "")}}/src

{{cookiecutter.project_name|replace(" ", "")}}/src/main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
def main():
1212
"""Main entry point for the application."""
1313
parser = argparse.ArgumentParser(description="{{ cookiecutter.project_short_description | replace('"', '\\"') | replace("'", "\\\\'") }}")
14-
parser.add_argument("--version", action="version", version=f"%(prog)s {__version__}")
14+
parser.add_argument(
15+
"--version", action="version", version=f"%(prog)s {__version__}"
16+
)
1517
parser.parse_args()
1618

1719
log = config.setup_logging()

0 commit comments

Comments
 (0)