commit d9f47420ac96e6c37a2a6648db21f26c842c6bea
parent 34e1d57212f03969ba5d59df64049ee01d1c27d2
Author: Tizian Leonhardt <tizianleonhardt@web.de>
Date: Sun, 7 Feb 2021 22:16:02 +0100
Remove debug output; prints for ux
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/project/type_dict.py b/project/type_dict.py
@@ -35,7 +35,9 @@ class CodeDict():
def __init__(self):
self.setup()
+ print("Creating dictionary, this can take 5 minutes or more..")
self.parse()
+ print("..done!")
self.outf.write(json.dumps(self.dict))
@@ -84,9 +86,7 @@ class CodeDict():
continue
if len(var) > 1:
- print("looking in", type_info[7:].strip(), "for", var[1:])
type_info = self.parse_chain(type_info[7:], var, 1)
- print("FOUND:", type_info)
if type_info is not None:
key = f"{src}:{lnr}"