Skip to content

Commit

Permalink
#2845 fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
arporter committed Jan 13, 2025
1 parent 04e347d commit 234101b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/psyclone/psyir/transformations/inline_trans.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
This module contains the InlineTrans transformation.
'''
from psyclone.errors import LazyString
from psyclone.errors import LazyString, InternalError
from psyclone.psyGen import Transformation
from psyclone.psyir.nodes import (
ArrayReference, ArrayOfStructuresReference, BinaryOperation, Call,
Expand Down Expand Up @@ -677,7 +677,7 @@ def validate(self, node, options=None):
f"has a named argument '{arg}' (TODO #924).")

parent_routine = node.ancestor(Routine)
table = parent_routine.symbol_table # node.scope.symbol_table
table = parent_routine.symbol_table # node.scope.symbol_table
routine_table = routine.symbol_table

for sym in routine_table.datasymbols:
Expand Down

0 comments on commit 234101b

Please sign in to comment.