Substitute a more readable f-string
This commit is contained in:
parent
d93c4de522
commit
d0b9158666
|
@ -1465,7 +1465,7 @@ successive matches::
|
|||
elif kind == 'SKIP':
|
||||
pass
|
||||
elif kind == 'MISMATCH':
|
||||
raise RuntimeError('%r unexpected on line %d' % (value, line_num))
|
||||
raise RuntimeError(f'{value!r} unexpected on line {line_num}')
|
||||
else:
|
||||
if kind == 'ID' and value in keywords:
|
||||
kind = value
|
||||
|
|
Loading…
Reference in New Issue