All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
The format() function is called on an object that is not a string. This is an error.
format()
Incorrect code:
print('value: {}').format(123)
Correct code:
print('value: {}'.format(123))