diff options
| author | Anthony Sottile <asottile@umich.edu> | 2021-03-29 19:18:34 -0700 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2021-03-29 19:18:34 -0700 |
| commit | 8ba8bc9fed37eaa36141b11ba226b81db363ca40 (patch) | |
| tree | 84759b62e11c2d829d38416a3cbb7a4a6a0650ce /src/flake8 | |
| parent | 01d72d89b14d2377a25b2aa98415dbf145be7d8f (diff) | |
| download | flake8-8ba8bc9fed37eaa36141b11ba226b81db363ca40.tar.gz | |
remove unused noqa comments
Diffstat (limited to 'src/flake8')
| -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 3d4371d..abfd14b 100644 --- a/src/flake8/plugins/manager.py +++ b/src/flake8/plugins/manager.py @@ -396,7 +396,7 @@ class PluginTypeManager(object): @staticmethod def _generate_call_function(method_name, optmanager, *args, **kwargs): - def generated_function(plugin): # noqa: D105 + def generated_function(plugin): method = getattr(plugin, method_name, None) if method is not None and callable(method): return method(optmanager, *args, **kwargs) |
