Commit 52c58349 authored by Alexander Schrode's avatar Alexander Schrode Committed by oroulet

remove print spam

parent a8d51e33
...@@ -397,7 +397,6 @@ def make_basetype_code(name, parent_datatype): ...@@ -397,7 +397,6 @@ def make_basetype_code(name, parent_datatype):
env = {} env = {}
env['ua'] = ua env['ua'] = ua
logger.debug("Executing code: %s", code) logger.debug("Executing code: %s", code)
print(code)
try: try:
exec(code, env) exec(code, env)
except Exception: except Exception:
......
...@@ -1537,7 +1537,6 @@ async def test_custom_method_with_struct(opc): ...@@ -1537,7 +1537,6 @@ async def test_custom_method_with_struct(opc):
@uamethod @uamethod
def func(parent, mystruct): def func(parent, mystruct):
print(mystruct)
mystruct.MyUInt32.append(100) mystruct.MyUInt32.append(100)
return mystruct return mystruct
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment