Skip to content

Commit 5f9eaff

Browse files
committed
Fix expr imports
1 parent b86341c commit 5f9eaff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pythonbpf/functions/functions_pass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from pythonbpf.helper import HelperHandlerRegistry, handle_helper_call
88
from pythonbpf.type_deducer import ctypes_to_ir
99
from pythonbpf.binary_ops import handle_binary_op
10-
from pythonbpf.expr_pass import eval_expr, handle_expr, convert_to_bool
10+
from pythonbpf.expr import eval_expr, handle_expr, convert_to_bool
1111

1212
from .return_utils import _handle_none_return, _handle_xdp_return, _is_xdp_name
1313

pythonbpf/helper/helper_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from collections.abc import Callable
44

55
from llvmlite import ir
6-
from pythonbpf.expr_pass import eval_expr
6+
from pythonbpf.expr import eval_expr
77

88
logger = logging.getLogger(__name__)
99

pythonbpf/maps/maps_pass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from llvmlite import ir
44
from enum import Enum
55
from .maps_utils import MapProcessorRegistry
6-
from ..debuginfo import DebugInfoGenerator
6+
from pythonbpf.debuginfo import DebugInfoGenerator
77
import logging
88

99
logger: Logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)