We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ce6c8b commit f46a0f3Copy full SHA for f46a0f3
fuzz.py
@@ -115,7 +115,7 @@ def parse_cost(output: str):
115
res = dict()
116
for line in output.splitlines():
117
k, v = line.strip().split(" ")
118
- res[k] = int(v)
+ res[k.removesuffix(":")] = int(v)
119
return res
120
121
fuzz_existing.py
@@ -88,7 +88,7 @@ def parse_cost(output: str):
88
89
90
91
92
93
94
0 commit comments