In the section, Imports Formatting, of Google Python Style Guide, the fourth point which is about application-specific imports is marked as deprecated in Nov. 2018. The example in the section does not provide enough information to understand what formatting should replace the old one. The lines indicated as the old style appear in both commented and uncommented format!
Take the example in the Style Guide.
from myproject.backend.hgwells import time_machine
from myproject.backend.state_machine import main_loop
Are these two lines good? If not, what should replace them?