Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions core/base/src/root-argparse.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import argparse

Check failure on line 1 in core/base/src/root-argparse.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (I001)

core/base/src/root-argparse.py:1:1: I001 Import block is un-sorted or un-formatted

def get_argparse():
parser = argparse.ArgumentParser(add_help=False, prog='root',
description = """ROOTs Object-Oriented Technologies.\n
root is an interactive interpreter of C++ code. It uses the ROOT framework. For more information on ROOT, please refer to\n
An extensive Users Guide is available from that site (see below).
description = """
root is an interactive interpreter of C++ code using Cling and the ROOT framework.
For more information on ROOT, please refer to https://root.cern/
An extensive Users Guide and API Reference are available from that website.
""")
parser.add_argument('-b', help='Run in batch mode without graphics')
parser.add_argument('-x', help='Exit on exceptions')
Expand Down
Loading