Skip to content

Commit ff24cd1

Browse files
committed
Changed tomli.loads
1 parent ebb89fe commit ff24cd1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ class TestsTOML:
355355
@classmethod
356356
def load(cls, toml_path: Path):
357357
with toml_path.open("rb") as f:
358-
data = tomli.load(f)
358+
data = tomli.loads(f)
359359
return cls({uuid: TestCaseTOML(uuid, *opts) for
360360
uuid, opts in
361361
data.items() if

0 commit comments

Comments
 (0)