Skip to content

Commit

Permalink
Update compat repr to match canonical.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 1, 2019
1 parent 104b27c commit 567243e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion importlib_metadata/_compat.py
Expand Up @@ -128,7 +128,7 @@ class PyPy_repr:
def __compat_repr__(self):
def make_param(name):
value = getattr(self, name)
return '{name} = {value!r}'.format(**locals())
return '{name}={value!r}'.format(**locals())
params = ', '.join(map(make_param, self._fields))
return 'EntryPoint({params})'.format(**locals())

Expand Down

0 comments on commit 567243e

Please sign in to comment.