Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mole99 committed May 23, 2024
1 parent 1cdf529 commit 226a1a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion cace/cace_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

from .common.simulation_manager import SimulationManager


def cli():
"""
Read a text file in CACE (ASCII) format 4.0, run
Expand All @@ -39,7 +40,9 @@ def cli():
)

# version number
parser.add_argument('--version', action='version', version=f'%(prog)s {__version__}')
parser.add_argument(
'--version', action='version', version=f'%(prog)s {__version__}'
)

# positional argument
parser.add_argument(
Expand Down
4 changes: 3 additions & 1 deletion cace/cace_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,9 @@ def gui():
)

# version number
parser.add_argument('--version', action='version', version=f'%(prog)s {__version__}')
parser.add_argument(
'--version', action='version', version=f'%(prog)s {__version__}'
)

# positional argument, optional
parser.add_argument(
Expand Down

0 comments on commit 226a1a6

Please sign in to comment.