On Mon, 2015-08-24 at 22:53 -0700, Clay Gerrard wrote: > So, I know that hacking has H301 (one import per line) - but say maybe > you wanted to import *more* that one thing on a line (there's some > exceptions right? sqlalchemy migrations or something?)
There's never a need to import more than one thing per line given the rule to only import modules, not objects. While that is not currently enforced by hacking, it is a strong style guideline. (Exceptions for things like sqlalchemy do exist, of course.) -- Kevin L. Mitchell <[email protected]> Rackspace __________________________________________________________________________ OpenStack Development Mailing List (not for usage questions) Unsubscribe: [email protected]?subject:unsubscribe http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
