Problem (High — file won't run)
games/Word-Scramble-Game/Word-Scramble-Game.py:354:
valid_words.append((category, available_words)
is missing the closing ) for .append(, and lines 356-362 are mis-indented under the open paren. python -m py_compile aborts with SyntaxError: '(' was never closed. Any invocation fails at import — the file is dead on arrival.
Suggested fix (tiny)
Close the call — valid_words.append((category, available_words)) — and de-indent the if not valid_words: block to the for-loop level.
Happy to fix under GSSoC '26 if assigned. 🙌
Problem (High — file won't run)
games/Word-Scramble-Game/Word-Scramble-Game.py:354:valid_words.append((category, available_words)is missing the closing
)for.append(, and lines 356-362 are mis-indented under the open paren.python -m py_compileaborts withSyntaxError: '(' was never closed. Any invocation fails at import — the file is dead on arrival.Suggested fix (tiny)
Close the call —
valid_words.append((category, available_words))— and de-indent theif not valid_words:block to thefor-loop level.Happy to fix under GSSoC '26 if assigned. 🙌