Skip to content

Commit

Permalink
Another comma/dot fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnick83 authored Oct 7, 2023
1 parent 10108c7 commit d8efaca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/frontend/python/newast.py
Original file line number Diff line number Diff line change
Expand Up @@ -4938,7 +4938,7 @@ def _promote(node: ast.AST) -> Union[Any, str, symbolic.symbol]:
res = self.visit(s)
else:
res = self._visit_ast_or_value(s)
elif sys.version_info < (3.9) and isinstance(s, ast.Index):
elif sys.version_info < (3, 9) and isinstance(s, ast.Index):
res = self._parse_subscript_slice(s.value)
elif isinstance(s, ast.Slice):
lower = s.lower
Expand Down

0 comments on commit d8efaca

Please sign in to comment.