Fix incorrect read information for assignement

pull/81/head
Josselin 6 years ago
parent 375e56e282
commit e4599ed940
  1. 2
      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):

Loading…
Cancel
Save