I do not understand what is written in Google Python Style Guide about multiple imports per line.
Is it ok (according to Google Style Guide) to have it this way:
from wagtail.wagtailimages.blocks import ImageChooserBlock, EmbedBlock
or do I have to write it like this:
from wagtail.wagtailimages.blocks import ImageChooserBlock
from wagtail.wagtailembeds.blocks import EmbedBlock
Thanks.