summaryrefslogtreecommitdiff
path: root/src/flake8/plugins
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-03-29 17:23:34 -0700
committerAnthony Sottile <asottile@umich.edu>2021-03-29 20:21:36 -0700
commit55f29c636f8eb80ec6544169c59ff3ab7733d1a1 (patch)
treee4ec70b3617c62970ab9dd94e7798147b1a46ae5 /src/flake8/plugins
parent1d5dd156ab9f2e37e40f95eb15c5a2c2cd49a7a9 (diff)
downloadflake8-55f29c636f8eb80ec6544169c59ff3ab7733d1a1.tar.gz
introduce pyupgrade, run it in python2-compatible mode
Diffstat (limited to 'src/flake8/plugins')
-rw-r--r--src/flake8/plugins/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flake8/plugins/manager.py b/src/flake8/plugins/manager.py
index abfd14b..4f482dd 100644
--- a/src/flake8/plugins/manager.py
+++ b/src/flake8/plugins/manager.py
@@ -40,7 +40,7 @@ class Plugin(object):
def __repr__(self): # type: () -> str
"""Provide an easy to read description of the current plugin."""
- return 'Plugin(name="{0}", entry_point="{1}")'.format(
+ return 'Plugin(name="{}", entry_point="{}")'.format(
self.name, self.entry_point.value
)