This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# couple things I'd throw in there: | |
# moar whitespace | |
res = [ | |
[ | |
[ | |
kriger.predict(x,y,z) | |
for x in grid[0] | |
] | |
for y in grid[1] | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from components.cards import Color | |
from components.style import redify, blueify | |
trash_talked = set() | |
def _trash_talk(color, *messages): | |
colorize = redify if color == Color.red else blueify | |
full_message = ' '.join(map(str, messages)) | |
if full_message in trash_talked: | |
return |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder