mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-08 03:54:26 +08:00
pyupgrade --py37-plus **/*.py (#1654)
* pyupgrade --py37-plus **/*.py * fixup! Format Python code with psf/black push
This commit is contained in:

committed by
John Law

parent
34c808b375
commit
28419cf839
@ -82,7 +82,7 @@ class Automaton:
|
||||
for key in self.adlist[current_state]["output"]:
|
||||
if not (key in result):
|
||||
result[key] = []
|
||||
result[key].append((i - len(key) + 1))
|
||||
result[key].append(i - len(key) + 1)
|
||||
return result
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user