Skip to content

Commit

Permalink
Fix type for Import.rename_list
Browse files Browse the repository at this point in the history
  • Loading branch information
reuterbal committed Jun 30, 2023
1 parent ae3de26 commit 9148d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loki/frontend/regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ def match(self, reader, parser_classes, scope):
symbols = None

return ir.Import(
module, symbols=as_tuple(symbols), rename_list=rename_list,
module, symbols=as_tuple(symbols), rename_list=as_tuple(rename_list),
source=reader.source_from_current_line()
)

Expand Down

0 comments on commit 9148d6e

Please sign in to comment.