Pattern: Use of deprecated backticks
Issue: -
Backticks were deprecated and removed in Python 3. Use the built-in function repr()
instead.
obj = MyObj()
print(repr(obj))
Pattern: Use of deprecated backticks
Issue: -
Backticks were deprecated and removed in Python 3. Use the built-in function repr()
instead.
obj = MyObj()
print(repr(obj))