Skip to content

Commit c0d023f

Browse files
committed
Removed HeyLiz print.
1 parent a5c2f98 commit c0d023f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

python_tools/json_util.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,6 @@ def _getPublicModules(self) -> list[types.ModuleType]:
139139
if '._' in module_name:
140140
continue
141141
if module_name in _LIST_MODULE_NAMES_INTERNAL:
142-
print(f'HeyLiz: skipping internal module {module_name}',
143-
file=sys.stderr)
144142
continue
145143
public_modules.append(m)
146144
public_modules.sort(key=lambda m: python_util.getFullModuleName(m))
@@ -276,8 +274,6 @@ def _getPublicClasses(self) -> list[type]:
276274
if '._' in class_name:
277275
continue
278276
if class_name in _LIST_CLASS_NAMES_INTERNAL:
279-
print(f'HeyLiz: skipping internal class {class_name}',
280-
file=sys.stderr)
281277
continue
282278
for base_class in inspect.getmro(cls):
283279
if python_util.isBuiltInClass(base_class):

0 commit comments

Comments
 (0)