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 cf3c241 commit a25bb9eCopy full SHA for a25bb9e
bin/export.py
@@ -193,7 +193,7 @@ def add_testcase(in_file: Path) -> None:
193
yaml_data["name"] = {language: problem.settings.name[language] for language in languages}
194
for type in PdfType:
195
for file in export_dir.glob(str(type.path("*"))):
196
- if file.suffixes[-2] not in languages:
+ if file.suffixes[-2][1:] not in languages:
197
file.unlink()
198
199
# drop explicit timelimit for kattis
0 commit comments