Skip to content

Commit dd2b872

Browse files
committed
Provide linting fixes
1 parent 7ff0e01 commit dd2b872

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/combiner/combiner.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ async def get_matches(node_list: xml.dom.minicompat.NodeList, identifier: str) -
110110
return ids
111111

112112

113+
# pylint: disable=R0914
113114
async def split_xml(
114115
internal_sig_coll: xml.dom.minicompat.NodeList,
115116
file_format_coll: xml.dom.minicompat.NodeList,
@@ -169,7 +170,11 @@ async def process_paths(manifest: list, prefix: str, start_index: int):
169170
)
170171
file_format_coll = doc.getElementsByTagName("FileFormatCollection")
171172
res, identifiers = await split_xml(
172-
internal_sig_coll, file_format_coll, identifiers, prefix, start_index,
173+
internal_sig_coll,
174+
file_format_coll,
175+
identifiers,
176+
prefix,
177+
start_index,
173178
)
174179
if not res:
175180
logger.error("cannot process: %s", item)
@@ -228,7 +233,7 @@ def main() -> None:
228233
)
229234
parser.add_argument(
230235
"--start-index",
231-
help="integer from which to start the singature index (for DROID copy-paste)",
236+
help="integer from which to start the signature index (for DROID copy-paste)",
232237
required=False,
233238
type=int,
234239
default=1,

0 commit comments

Comments
 (0)