Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mila-iqia/milabench into phase_lock
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre.delaunay committed Jun 20, 2024
2 parents 6eef785 + 64e692e commit 4316cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion milabench/validation/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ParsedTraceback:
def find_raise(self):
import re

pattern = re.compile("raise (.*)\(")
pattern = re.compile(r"raise (.*)\(")
for i, line in enumerate(self.lines):
if m := pattern.search(line):
return i, m.group(1)
Expand Down

0 comments on commit 4316cd1

Please sign in to comment.