Skip to content

Commit 9900b3a

Browse files
committed
fix cyclic import
1 parent df11a85 commit 9900b3a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

loki/expression/expr_visitors.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"""
1212
from pymbolic.primitives import Expression
1313

14-
from loki.ir import Node, Visitor, Transformer
14+
from loki.ir.nodes import Node
15+
from loki.ir.visitor import Visitor
16+
from loki.ir.transformer import Transformer
1517
from loki.tools import flatten, as_tuple
1618
from loki.expression.mappers import (
1719
SubstituteExpressionsMapper, ExpressionRetriever, AttachScopesMapper

0 commit comments

Comments
 (0)