Skip to content

Commit

Permalink
🔀 Merge pull request #45 from davep/tidy-cli-args
Browse files Browse the repository at this point in the history
Tidy up the command line arguments
  • Loading branch information
davep authored Mar 11, 2025
2 parents 192d9be + 380f0de commit aaded0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hike/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

##############################################################################
# Local imports.
from . import __version__
from . import __doc__, __version__
from .hike import Hike


Expand All @@ -21,8 +21,8 @@ def get_args() -> Namespace:

# Build the parser.
parser = ArgumentParser(
prog="Hike",
description="Hike - A Markdown browser for the terminal",
prog="hike",
description=__doc__,
epilog=f"v{__version__}",
)

Expand Down

0 comments on commit aaded0f

Please sign in to comment.