Skip to content

Commit 75641ab

Browse files
committed
black
1 parent c80076c commit 75641ab

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

.flake8

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated from:
2+
# https://github.com/plone/meta/tree/master/config/default
3+
# See the inline comments on how to expand/tweak this configuration file
4+
[flake8]
5+
doctests = 1
6+
ignore =
7+
# black takes care of line length
8+
E501,
9+
# black takes care of where to break lines
10+
W503,
11+
# black takes care of spaces within slicing (list[:])
12+
E203,
13+
# black takes care of spaces after commas
14+
E231,
15+
16+
##
17+
# Add extra configuration options in .meta.toml:
18+
# [flake8]
19+
# extra_lines = """
20+
# _your own configuration lines_
21+
# """
22+
##

.isort.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[settings]
2+
profile=plone

backend/src/design/plone/opendata/controlpanel/configure.zcml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
i18n_domain="design.plone.opendata"
66
>
77

8-
<adapter factory=".opendata.ControlPanelConfigletPanel" name="opendata-controlpanel" />
8+
<adapter
9+
factory=".opendata.ControlPanelConfigletPanel"
10+
name="opendata-controlpanel"
11+
/>
912

1013
<browser:page
1114
name="opendata-controlpanel"

0 commit comments

Comments
 (0)