From ee90ee93925add1f54973d8b0f5a1a551a6c8ef7 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Wed, 8 Oct 2025 06:50:53 +0530 Subject: [PATCH] Fix type_deducer import in expr --- pythonbpf/expr/expr_pass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonbpf/expr/expr_pass.py b/pythonbpf/expr/expr_pass.py index fb4cfe6..b1cf39e 100644 --- a/pythonbpf/expr/expr_pass.py +++ b/pythonbpf/expr/expr_pass.py @@ -4,7 +4,7 @@ from logging import Logger import logging from typing import Dict -from .type_deducer import ctypes_to_ir, is_ctypes +from pythonbpf.type_deducer import ctypes_to_ir, is_ctypes logger: Logger = logging.getLogger(__name__)