diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-05-15 21:48:02 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-05-15 21:48:02 +0200 |
commit | 721d166110bd39b067aa064ebe8c7bf6f514effc (patch) | |
tree | 1715c97fe97ded9180394350771a415422ea1dbb /pyGHDL/cli/dom.py | |
parent | 00ea68254ea6ff2ff04543f912f67a0812972be7 (diff) | |
download | ghdl-721d166110bd39b067aa064ebe8c7bf6f514effc.tar.gz ghdl-721d166110bd39b067aa064ebe8c7bf6f514effc.tar.bz2 ghdl-721d166110bd39b067aa064ebe8c7bf6f514effc.zip |
pyGHDL: limit pyTooling version to 1.10.0
Diffstat (limited to 'pyGHDL/cli/dom.py')
-rwxr-xr-x | pyGHDL/cli/dom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyGHDL/cli/dom.py b/pyGHDL/cli/dom.py index b223bdef5..1ec168842 100755 --- a/pyGHDL/cli/dom.py +++ b/pyGHDL/cli/dom.py @@ -41,7 +41,7 @@ from pyGHDL.dom import DOMException from pyGHDL.libghdl import LibGHDLException from pyTooling.Decorators import export -# from pyTooling.MetaClasses import Singleton +from pyTooling.MetaClasses import Singleton from pyTooling.TerminalUI import LineTerminal, Severity from pyAttributes import Attribute from pyAttributes.ArgParseAttributes import ( @@ -120,7 +120,7 @@ class Application(LineTerminal, ArgParseMixin): # Initialize the Terminal class # -------------------------------------------------------------------------- - # Singleton.Register(LineTerminal, self) + Singleton.Register(LineTerminal, self) # Initialize DOM with an empty design # -------------------------------------------------------------------------- |