I hate it when code doesn't flush, like the roommate from hell
print = functools.partial(print, flush=True) # noqa
Conversation
Replying to
Not flushing was making stdout stuff show up in surprising order, seemed to happen most with a lot of code calling subprocess shell commands.

