summaryrefslogtreecommitdiff
path: root/src/flake8/plugins
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-04-18 09:17:48 -0700
committerAnthony Sottile <asottile@umich.edu>2021-04-18 09:23:48 -0700
commitaf1668bf04079b1a8db5910a5e3697c7c8db8fc9 (patch)
tree65405b4d3c2c5e1a90fa5eb3d7c8d6b7d4c18c68 /src/flake8/plugins
parenta7174759e9a651405ef37db511ac1168e3bbdec5 (diff)
downloadflake8-af1668bf04079b1a8db5910a5e3697c7c8db8fc9.tar.gz
extend black formatting to tests as well
Diffstat (limited to 'src/flake8/plugins')
-rw-r--r--src/flake8/plugins/manager.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/flake8/plugins/manager.py b/src/flake8/plugins/manager.py
index 3779b20..6f32e1f 100644
--- a/src/flake8/plugins/manager.py
+++ b/src/flake8/plugins/manager.py
@@ -472,8 +472,7 @@ class Checkers(PluginTypeManager):
plugin.to_dictionary() for plugin in self.logical_line_plugins
],
"physical_line_plugins": [
- plugin.to_dictionary()
- for plugin in self.physical_line_plugins
+ plugin.to_dictionary() for plugin in self.physical_line_plugins
],
}