aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/NonStandard.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-06-21 21:52:50 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-12-24 09:32:35 +0100
commit08a338e9568c333929c6863be60580619e3e77ff (patch)
tree1b045b05c55baeb2676cdbb0dcb00393c24557db /pyGHDL/dom/NonStandard.py
parentbaccb0768b6636f8322ff499cb0887dbaa4f7f59 (diff)
downloadghdl-08a338e9568c333929c6863be60580619e3e77ff.tar.gz
ghdl-08a338e9568c333929c6863be60580619e3e77ff.tar.bz2
ghdl-08a338e9568c333929c6863be60580619e3e77ff.zip
Changed '"...".format(...)' to f-strings.
(cherry picked from commit 86a5638332b2573523b1f9768cf321a41b16f21c)
Diffstat (limited to 'pyGHDL/dom/NonStandard.py')
-rw-r--r--pyGHDL/dom/NonStandard.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyGHDL/dom/NonStandard.py b/pyGHDL/dom/NonStandard.py
index d7a65b4a4..db160faaf 100644
--- a/pyGHDL/dom/NonStandard.py
+++ b/pyGHDL/dom/NonStandard.py
@@ -143,14 +143,14 @@ class Document(VHDLModel_Document):
else:
self.__loadFromString(sourceCode)
- if dontParse == False:
+ if not dontParse:
# Parse input file
t1 = time.perf_counter()
self.__ghdlFile = sem_lib.Load_File(self.__ghdlSourceFileEntry)
CheckForErrors()
self.__ghdlProcessingTime = time.perf_counter() - t1
- if dontTranslate == False:
+ if not dontTranslate:
t1 = time.perf_counter()
self.translate()
self.__domTranslateTime = time.perf_counter() - t1