Blacken code.

This commit is contained in:
Pavel Minaev 2022-04-13 10:41:36 -07:00 committed by Pavel Minaev
parent cb25e2f106
commit dd5196fbfc
36 changed files with 160 additions and 189 deletions

View file

@ -36,7 +36,7 @@ def get_marked_line_numbers(path):
with open(path, "rb") as f:
lines = {}
for i, line in enumerate(f):
match = re.search(br"#\s*@(.+?)\s*$", line)
match = re.search(rb"#\s*@(.+?)\s*$", line)
if match:
markers = match.group(1).decode("ascii")
for marker in markers.split(","):