Skip to content

Commit 234101b

Browse files
committed
#2845 fix linting
1 parent 04e347d commit 234101b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/psyclone/psyir/transformations/inline_trans.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
This module contains the InlineTrans transformation.
3838
3939
'''
40-
from psyclone.errors import LazyString
40+
from psyclone.errors import LazyString, InternalError
4141
from psyclone.psyGen import Transformation
4242
from psyclone.psyir.nodes import (
4343
ArrayReference, ArrayOfStructuresReference, BinaryOperation, Call,
@@ -677,7 +677,7 @@ def validate(self, node, options=None):
677677
f"has a named argument '{arg}' (TODO #924).")
678678

679679
parent_routine = node.ancestor(Routine)
680-
table = parent_routine.symbol_table # node.scope.symbol_table
680+
table = parent_routine.symbol_table # node.scope.symbol_table
681681
routine_table = routine.symbol_table
682682

683683
for sym in routine_table.datasymbols:

0 commit comments

Comments
 (0)