diff options
| author | Anthony Sottile <asottile@umich.edu> | 2021-03-29 17:23:34 -0700 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2021-03-29 20:21:36 -0700 |
| commit | 55f29c636f8eb80ec6544169c59ff3ab7733d1a1 (patch) | |
| tree | e4ec70b3617c62970ab9dd94e7798147b1a46ae5 /src/flake8/plugins | |
| parent | 1d5dd156ab9f2e37e40f95eb15c5a2c2cd49a7a9 (diff) | |
| download | flake8-55f29c636f8eb80ec6544169c59ff3ab7733d1a1.tar.gz | |
introduce pyupgrade, run it in python2-compatible mode
Diffstat (limited to 'src/flake8/plugins')
| -rw-r--r-- | src/flake8/plugins/manager.py | 2 |
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 ) |
