ddnet/scripts/wordlist.py
def 13a8dfa307 Add pylint
and fix occurences
2020-12-09 10:40:28 +01:00

10 lines
297 B
Python

print("#ifndef GENERATED_WORDLIST_H")
print("#define GENERATED_WORDLIST_H")
print("const char g_aFallbackWordlist[][32] = {")
with open("data/wordlist.txt") as f:
for line in f:
word = line.strip().split("\t")[1]
print("\t\"%s\", " % word)
print("};")
print("#endif // GENERATED_WORDLIST_H")