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 240c10c commit bb36ad5Copy full SHA for bb36ad5
my/chess/export.py
@@ -49,9 +49,9 @@ def _parse_export_file(p: Path) -> Results:
49
# typically this raises a KeyError since the JSON didn't match
50
# what the NamedTuple expects
51
try:
52
- yield from lmodel.from_export(str(p))
+ yield from lmodel.from_export(p)
53
except Exception:
54
- yield from cmodel.from_export(str(p))
+ yield from cmodel.from_export(p)
55
56
57
@mcachew(depends_on=_cachew_depends_on, logger=logger)
0 commit comments