black formatting

This commit is contained in:
Paul Gauthier 2023-05-17 18:24:35 -07:00
parent 3c26f90269
commit 9a413d351d
4 changed files with 26 additions and 16 deletions

View file

@ -51,7 +51,9 @@ def try_dotdotdots(whole, part, replace):
continue
if whole.count(part) != 1:
raise ValueError("No perfect matching chunk in edit block with ... or part appears more than once")
raise ValueError(
"No perfect matching chunk in edit block with ... or part appears more than once"
)
whole = whole.replace(part, replace, 1)