|
|
|
|
|
|
165
|
# for non existing trigrams, we throw the seum to the seum giver
|
165
|
# for non existing trigrams, we throw the seum to the seum giver
|
|
166
|
for not_a_counter in set(counters) - set([c.trigramme for c in yes_counters]):
|
166
|
for not_a_counter in set(counters) - set([c.trigramme for c in yes_counters]):
|
|
167
|
seums_to_throw.append((user_counter, user_counter,
|
167
|
seums_to_throw.append((user_counter, user_counter,
|
|
168
|
- f"Trigramme {not_a_counter} qui n'existe pas du seum"))
|
|
|
|
|
|
168
|
+ "Trigramme {} qui n'existe pas du seum".format(not_a_counter)))
|
|
169
|
else:
|
169
|
else:
|
|
170
|
seums_to_throw.append((user_counter, user_counter, m))
|
170
|
seums_to_throw.append((user_counter, user_counter, m))
|
|
171
|
|
171
|
|