-
Output a string with
"{value}", run the whole thing again and make itf"{value}". -
Misspell a command line argument when accessing it on an
argsobject because it’s beyond mypy’s capabilities to type check. -
Try to access a
pandasDataFrameby row likedf[0]and have the same eighteen-line double stack trace vomited at me. -
Wait for minutes for
df.iterrows()to iterate over apandasDataFramebecause I don’t want to try to figure out the incantation for how to vectorize yet another trivial aggregation. -
Throw in
code.interact(local=dict(globals(), **locals()))andtry/exceptrather than learning how to use the python debugger or get break points to do something in my editor. -
Spend way too long playing type golf with stuff like
Dict[str, Dict[str, List[Optional[Union[float, int]]]]]in one-off scripts to appeasemypy. -
Spend way too long trying to correctly use
Enums for anything before going back to strings. -
Spend way too long trying to correctly configure
loggingfor anything before going back toprint().