You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defprint_info_from_list(some_list):
msg=''msg+=(' '+'{:<27}'.format('') +''.join('{:>10}|'.format(
cntrs['id']) forcntrsinsome_list) +'\n') # pylint says this is not okforkin ['a', 'b', 'c']:
msg+=(' '+'{:<27}'.format(k) +''.join('{:>10}|'.format(
cntrs['bla'][k]) forcntrsinsome_list) +'\n') # but this is ok
$ pylint test.py --errors-only
Current behavior
************* Module test
plint.py:4:0: E1126: Sequence index is not an int, slice, or instance with __index__ (invalid-sequence-index)