diff --git a/pythonbpf/maps/maps_pass.py b/pythonbpf/maps/maps_pass.py index e7dd174..693655f 100644 --- a/pythonbpf/maps/maps_pass.py +++ b/pythonbpf/maps/maps_pass.py @@ -274,7 +274,6 @@ def process_bpf_map(func_node, module): rval = return_stmt.value if isinstance(rval, ast.Call) and isinstance(rval.func, ast.Name): - print(f"we're lit, {ast.dump(rval)}") handler = MapProcessorRegistry.get_processor(rval.func.id) if handler: return handler(map_name, rval, module)