diff --git a/slither/slithir/operations/assignment.py b/slither/slithir/operations/assignment.py index 0440a1697..3ea100f74 100644 --- a/slither/slithir/operations/assignment.py +++ b/slither/slithir/operations/assignment.py @@ -25,7 +25,7 @@ class Assignment(OperationWithLValue): @property def read(self): - return list(self.variables) + return [self.rvalue] @property def variable_return_type(self):