Skip to content

Commit 801c709

Browse files
style: fix trailing whitespace in instrument.py
1 parent 1502b4d commit 801c709

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

codeflash/languages/javascript/instrument.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ def _find_balanced_parens(self, code: str, open_paren_pos: int) -> tuple[str | N
389389
match = special_re.search(s, pos)
390390
if not match:
391391
return None, -1
392-
392+
393393
char = match.group()
394394
char_pos = match.start()
395395

@@ -407,7 +407,7 @@ def _find_balanced_parens(self, code: str, open_paren_pos: int) -> tuple[str | N
407407
depth += 1
408408
elif char == ")":
409409
depth -= 1
410-
410+
411411
pos = char_pos + 1
412412

413413
if depth != 0:

0 commit comments

Comments
 (0)