Skip to content

Commit

Permalink
ident help desc in code
Browse files Browse the repository at this point in the history
  • Loading branch information
bortok committed Mar 15, 2024
1 parent 7e6ebb0 commit dbc5553
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/nrx/nrx.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import networkx as nx
import jinja2
import yaml
import textwrap

# Single source version
from nrx.__about__ import __version__
Expand Down Expand Up @@ -984,12 +985,13 @@ def arg_input_check(s):
def parse_args():
"""CLI arguments parser"""
from argparse import RawDescriptionHelpFormatter
args_parser = argparse.ArgumentParser(prog='nrx', formatter_class=RawDescriptionHelpFormatter,
description="""
nrx - network topology exporter by netreplica
args_parser = argparse.ArgumentParser(prog='nrx',
formatter_class=RawDescriptionHelpFormatter,
description=textwrap.dedent("""
nrx - network topology exporter by netreplica
online documentation: https://github.com/netreplica/nrx/blob/main/README.md
""")
online documentation: https://github.com/netreplica/nrx/blob/main/README.md
"""))

sites_group = args_parser.add_mutually_exclusive_group()

Expand Down

0 comments on commit dbc5553

Please sign in to comment.