Skip to content

Commit 7d5d202

Browse files
committed
Make code-analysis happy
1 parent 46435de commit 7d5d202

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
long_description = (
99
open("README.rst").read() + "\n" + "Contributors\n"
10-
"============\n"
11-
+ "\n"
12-
+ open("CONTRIBUTORS.rst").read()
13-
+ "\n"
14-
+ open("CHANGES.rst").read()
15-
+ "\n"
10+
"============\n" +
11+
"\n" +
12+
open("CONTRIBUTORS.rst").read() +
13+
"\n" +
14+
open("CHANGES.rst").read() +
15+
"\n"
1616
)
1717

1818

src/collective/dms/scanbehavior/upgrades.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ def v2(context):
1818
types = []
1919
for fti in ftis.listTypeInfo():
2020
if (
21-
IDexterityFTI.providedBy(fti)
22-
and "collective.dms.scanbehavior.behaviors.behaviors.IScanFields"
23-
in fti.behaviors
21+
IDexterityFTI.providedBy(fti) and
22+
"collective.dms.scanbehavior.behaviors.behaviors.IScanFields" in
23+
fti.behaviors
2424
):
2525
types.append(fti.getId())
2626

0 commit comments

Comments
 (0)