Skip to content

Commit e9a6167

Browse files
committed
Remove debug prints
1 parent 5042e2f commit e9a6167

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

β€Žsrc/godot/_lang_resource_format_loader.pxiβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ cdef class PythonResourceFormatLoader:
113113
try:
114114
importlib.import_module(modname) # Force lazy loading of the module
115115
klass = _get_exposed_class(modname) # `_get_exposed_class` defined in `_lang_tags.pxi`
116-
print('=========> new Godot-Python class', klass)
117116

118117
except BaseException:
119118
# If we are here it could be because the file doesn't exists

β€Žsrc/godot/_lang_script_instance.pxiβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ cdef void _script_instance_call_func(
161161

162162
try:
163163
method_fn = self.__class__.__dict__[str(method)]
164-
print(f"============> meth {method_fn!r}", flush=True)
165164
except KeyError as exc:
166165
r_error.error = GDExtensionCallErrorType.GDEXTENSION_CALL_ERROR_INVALID_METHOD
167166
print(f"[DEBUG] CALLED DONE _script_instance_call_func(...) -> ERROR {exc!r}", flush=True)

0 commit comments

Comments
Β (0)