Minor code cleanups:
- remove unnecessary variables
- invert some logic to remove nesting (indentatation) by returning early when possible
- use x is not None instead of not x when x is an Optional[something]
- move same-line comments to previous line
- add a few typehints