Not enough arguments in format stringPYL-E1306
Format string do not contain enough arguments to unpack. This can cause an error.
Bad practice
print('Hey {}, {} messaged you'.format('Bob'))
Recommended
print('Hey {}, {} messaged you'.format('Bob', 'Alex'))