Use single quotes per style guide

This commit is contained in:
Jamie Bliss 2018-11-29 22:51:29 -05:00
parent 07868f1dfd
commit 869774480d
No known key found for this signature in database
GPG key ID: 056512BD3C56F501

View file

@ -139,11 +139,11 @@ def static_loader(
def _format_entrypoint_target(ep):
"""
'''
Makes a string describing the target of an EntryPoint object.
Base strongly on EntryPoint.__str__().
"""
'''
s = ep.module_name
if ep.attrs:
s += ':' + '.'.join(ep.attrs)