aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/cli
diff options
context:
space:
mode:
authorXiretza <xiretza@xiretza.xyz>2022-02-03 22:17:27 +0100
committerXiretza <xiretza@xiretza.xyz>2022-02-03 22:20:50 +0100
commit6d578abd9c08b08c488744ccce68ccfad202c9c9 (patch)
tree298e8707411e5f446498b87e9db02bc70f0b488c /pyGHDL/cli
parent0e46300c437e39747ebe65e6eae5a131477d28c9 (diff)
downloadghdl-6d578abd9c08b08c488744ccce68ccfad202c9c9.tar.gz
ghdl-6d578abd9c08b08c488744ccce68ccfad202c9c9.tar.bz2
ghdl-6d578abd9c08b08c488744ccce68ccfad202c9c9.zip
pyGHDL: reformat after update to black version 22
Diffstat (limited to 'pyGHDL/cli')
-rwxr-xr-xpyGHDL/cli/dom.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyGHDL/cli/dom.py b/pyGHDL/cli/dom.py
index 6ba5894fe..1ec168842 100755
--- a/pyGHDL/cli/dom.py
+++ b/pyGHDL/cli/dom.py
@@ -280,8 +280,8 @@ class Application(LineTerminal, ArgParseMixin):
DOM translation time: {:5.3f} us
"""
).format(
- document.LibGHDLProcessingTime * 10 ** 6,
- document.DOMTranslationTime * 10 ** 6,
+ document.LibGHDLProcessingTime * 10**6,
+ document.DOMTranslationTime * 10**6,
)
)
elif args.Directory is not None:
@@ -299,8 +299,8 @@ class Application(LineTerminal, ArgParseMixin):
DOM translation time: {:5.3f} us
"""
).format(
- document.LibGHDLProcessingTime * 10 ** 6,
- document.DOMTranslationTime * 10 ** 6,
+ document.LibGHDLProcessingTime * 10**6,
+ document.DOMTranslationTime * 10**6,
)
)