aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/cli/dom.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Paebbels@gmail.com>2023-04-15 10:32:45 +0200
committerGitHub <noreply@github.com>2023-04-15 10:32:45 +0200
commit9b325b99b8f43b2f36da1d1ad554864d295c1894 (patch)
treeaad240a743d00cd95d15c34e80a5f10af7e7681d /pyGHDL/cli/dom.py
parentd8ac5d6421e9156d3c9ebde905c838d7e277e181 (diff)
parentf11446e1cfaf0ed4db2d43ec3b9b421de313b6ae (diff)
downloadghdl-9b325b99b8f43b2f36da1d1ad554864d295c1894.tar.gz
ghdl-9b325b99b8f43b2f36da1d1ad554864d295c1894.tar.bz2
ghdl-9b325b99b8f43b2f36da1d1ad554864d295c1894.zip
Updated dependencies and adjusted Python code.
Diffstat (limited to 'pyGHDL/cli/dom.py')
-rwxr-xr-xpyGHDL/cli/dom.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/pyGHDL/cli/dom.py b/pyGHDL/cli/dom.py
index 442ad6688..04c23575b 100755
--- a/pyGHDL/cli/dom.py
+++ b/pyGHDL/cli/dom.py
@@ -114,8 +114,8 @@ class Application(LineTerminal, ArgParseMixin):
_design: Design
- def __init__(self, debug=False, verbose=False, quiet=False, sphinx=False):
- super().__init__(verbose, debug, quiet)
+ def __init__(self):
+ super().__init__()
# Initialize DOM with an empty design
# --------------------------------------------------------------------------
@@ -155,11 +155,6 @@ class Application(LineTerminal, ArgParseMixin):
add_help=False,
)
- # If executed in Sphinx to auto-document CLI arguments, exit now
- # --------------------------------------------------------------------------
- if sphinx:
- return
-
# Change error and warning reporting
# --------------------------------------------------------------------------
self._LOG_MESSAGE_FORMAT__[Severity.Fatal] = "{DARK_RED}[FATAL] {message}{NOCOLOR}"