From ccbdfee9deda71a5aa4034b2ea5ff01012cf83ae Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Sun, 29 Mar 2026 02:44:42 +0530 Subject: [PATCH] Core: Remove unsused args in assign_pass --- pythonbpf/assign_pass.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pythonbpf/assign_pass.py b/pythonbpf/assign_pass.py index d252c49..e39270d 100644 --- a/pythonbpf/assign_pass.py +++ b/pythonbpf/assign_pass.py @@ -45,7 +45,6 @@ def handle_struct_field_assignment( if _is_char_array(field_type) and _is_i8_ptr(val_type): _copy_string_to_char_array( func, - compilation_context, builder, val, field_ptr, @@ -62,7 +61,6 @@ def handle_struct_field_assignment( def _copy_string_to_char_array( func, - compilation_context, builder, src_ptr, dst_ptr,