Skip to content

Commit 11dfd03

Browse files
authored
Update README.md
1 parent 77be9d0 commit 11dfd03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def parse_log_tinydb(log: str) -> dict[str, str]:
7474
pattern = r"^(.*\/.*)::(.*)\s+\w+\s+\[\s*(\d+%)\]$"
7575
for line in log.split("\n"):
7676
line = line.strip()
77-
m = re.match(pattern, string)
77+
m = re.match(pattern, line)
7878
if m:
7979
line = line.split('[')[0].strip()
8080
test, value = line.split(' ')

0 commit comments

Comments
 (0)