yahoo-eng-team team mailing list archive
-
yahoo-eng-team team
-
Mailing list archive
-
Message #24732
[Bug 1394605] [NEW] Don't use slashes for long lines - use parentheses instead
Public bug reported:
Don't use slashes for long lines - use parentheses instead.
Example:
https://github.com/openstack/glance/blob/master/glance/api/v2/schemas.py#L38
self.metadef_namespace_collection_schema = \
metadef_namespaces.get_collection_schema()
Transformats to:
self.metadef_namespace_collection_schema = (
metadef_namespaces.get_collection_schema())
** Affects: glance
Importance: Undecided
Assignee: Roman Vasilets (rvasilets)
Status: New
** Changed in: glance
Assignee: (unassigned) => Roman Vasilets (rvasilets)
--
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to Glance.
https://bugs.launchpad.net/bugs/1394605
Title:
Don't use slashes for long lines - use parentheses instead
Status in OpenStack Image Registry and Delivery Service (Glance):
New
Bug description:
Don't use slashes for long lines - use parentheses instead.
Example:
https://github.com/openstack/glance/blob/master/glance/api/v2/schemas.py#L38
self.metadef_namespace_collection_schema = \
metadef_namespaces.get_collection_schema()
Transformats to:
self.metadef_namespace_collection_schema = (
metadef_namespaces.get_collection_schema())
To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/1394605/+subscriptions
Follow ups
References