First version of explain. Creating a new parser was a wrong approach. Need to reimplement

This commit is contained in:
2020-04-17 17:24:57 +02:00
parent 6c7c529016
commit d6ea2461a8
43 changed files with 2679 additions and 162 deletions
+3 -2
View File
@@ -31,9 +31,10 @@ def main(argv):
_in = core.utils.sysarg_to_string(args)
result = sheerka.evaluate_user_input(_in)
sheerka.print(result)
for res in result:
logging.info(res)
# for res in result:
# logging.info(res)
return result[-1].status if len(result) > 0 else 1
except getopt.GetoptError: