diff --git a/ast.py b/ast.py index b0b91b80aad0d6aae169c29fcc7440ea55fe8bcd..5a3602f410570a1978d946c2671342e3f25d91dd 100644 --- a/ast.py +++ b/ast.py @@ -302,7 +302,7 @@ class SympyAssignment(Node): def lhs(self, newValue): self._lhsSymbol = newValue self._isDeclaration = True - if isinstance(self._lhsSymbol, Field.Access) or isinstance(self._lhsSymbol, Indexed): + if isinstance(self._lhsSymbol, Field.Access) or isinstance(self._lhsSymbol, sp.Indexed): self._isDeclaration = False @property