mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Blacken code.
This commit is contained in:
parent
cb25e2f106
commit
dd5196fbfc
36 changed files with 160 additions and 189 deletions
|
|
@ -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(","):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue