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 d71516e commit 3b078e8Copy full SHA for 3b078e8
bin/problem.py
@@ -273,6 +273,8 @@ def __init__(
273
self.keywords: list[str] = parse_optional_list_setting(yaml_data, "keywords", str)
274
# Not implemented in BAPCtools. We always test all languges in langauges.yaml.
275
self.languages: list[str] = parse_optional_list_setting(yaml_data, "languages", str)
276
+ # Not implemented in BAPCtools
277
+ self.allow_file_writing: bool = parse_setting(yaml_data, "allow_file_writing", False)
278
279
constants: dict[str, Any] = parse_setting(yaml_data, "constants", {})
280
self.constants: dict[str, str] = {}
0 commit comments