Merge pull request #1110 from crytic/fix-f-string

Fix missing 'f' at beginning of f-string
pull/1118/head
Feist Josselin 3 years ago committed by GitHub
commit 452fa7c9a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      slither/slithir/operations/phi.py

@ -33,4 +33,4 @@ class Phi(OperationWithLValue):
return self._nodes
def __str__(self):
return "{self.lvalue}({self.lvalue.type}) := \u03D5({[str(v) for v in self._rvalues]})"
return f"{self.lvalue}({self.lvalue.type}) := \u03D5({[str(v) for v in self._rvalues]})"

Loading…
Cancel
Save