From 05083bd51352201cc1fb873075b2d7599dc99b98 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Thu, 2 Oct 2025 22:10:28 +0530 Subject: [PATCH] janitorial nitpicks --- pythonbpf/maps/maps_pass.py | 1 - 1 file changed, 1 deletion(-) 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)