Skip to content

Commit

Permalink
fixed lsp hint
Browse files Browse the repository at this point in the history
  • Loading branch information
calbaker committed Jan 16, 2025
1 parent f0d38f5 commit 9a34639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/fastsim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def _get_list(path_elem, container):
if list_match is not None:
list_name = list_match.group(1)
index = int(list_match.group(2))
l = container.__getattribute__(list_name).tolist()
return l, list_name, index
lst = container.__getattribute__(list_name).tolist()
return lst, list_name, index
else:
return None, None, None

Expand Down

0 comments on commit 9a34639

Please sign in to comment.