There was an error while loading. Please reload this page.
1 parent 4f4effb commit 68fcd07Copy full SHA for 68fcd07
1 file changed
example_problems/hangman/output_validator/validator.py
@@ -26,7 +26,7 @@ def write_generic_message(message: str, feedback_file: str) -> None:
26
try:
27
with open(message_file_path, 'r+') as message_file:
28
if message not in message_file.read():
29
- print(message, file=teammessage_file)
+ print(message, file=message_file)
30
except FileNotFoundError:
31
# Overwrite in case the file got created in between
32
with open(message_file_path, 'w') as message_file:
0 commit comments