diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-12-12 14:35:51 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-12-12 14:50:05 +0100 |
commit | 03836b00aeddca2fd73f078d7850dc58be632466 (patch) | |
tree | c58ec03330d2bddd1c55cd81e3bfc81016139b3b /pyGHDL/cli/dom.py | |
parent | f7b6325cb2b4ba5f722b5dceb3b36737a94fba47 (diff) | |
download | ghdl-03836b00aeddca2fd73f078d7850dc58be632466.tar.gz ghdl-03836b00aeddca2fd73f078d7850dc58be632466.tar.bz2 ghdl-03836b00aeddca2fd73f078d7850dc58be632466.zip |
Changed export decorator from pydecor to pyTooling.Decorators
Diffstat (limited to 'pyGHDL/cli/dom.py')
-rwxr-xr-x | pyGHDL/cli/dom.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/pyGHDL/cli/dom.py b/pyGHDL/cli/dom.py index 99f59c277..f1f860226 100755 --- a/pyGHDL/cli/dom.py +++ b/pyGHDL/cli/dom.py @@ -40,8 +40,9 @@ from textwrap import wrap, dedent from pyGHDL.dom import DOMException from pyGHDL.libghdl import LibGHDLException -from pydecor import export -from pyMetaClasses import Singleton +from pyTooling.Decorators import export +from pyTooling.MetaClasses import Singleton +from pyTooling.TerminalUI import LineTerminal, Severity from pyAttributes import Attribute from pyAttributes.ArgParseAttributes import ( ArgParseMixin, @@ -51,7 +52,6 @@ from pyAttributes.ArgParseAttributes import ( ArgumentAttribute, SwitchArgumentAttribute, ) -from pyTerminalUI import LineTerminal, Severity from pyGHDL import GHDLBaseException from pyGHDL.dom.NonStandard import Design, Document @@ -64,8 +64,7 @@ __email__ = "" __version__ = "0.0.0" __status__ = "Alpha" __license__ = "" -__all__ = [] -__api__ = __all__ + class SourceAttribute(Attribute): |