Open
Description
The google python style guide recommends against importing classes. This makes it clear which namespace defines each class, but is cumbersome and leads to ugly workarounds for common namespace names (e.g. ... import view as view_module
).
Most modules have a consistent internal import style, but there's no consistent style across the library. We should decide whether to follow the style guide everywhere or break from it everywhere.