Skip to content

Commit a9e97c1

Browse files
committed
lint
1 parent 48e1ba8 commit a9e97c1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

madoop/mapreduce.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525

2626
def mapreduce(
27+
*,
2728
input_path,
2829
output_dir,
2930
map_exe,
@@ -292,7 +293,9 @@ def partition_keys_custom(
292293
Update the data structures provided by the caller input_keys_stats and
293294
output_keys_stats. Both map a filename to a set of of keys.
294295
"""
295-
# pylint: disable=too-many-arguments,too-many-locals
296+
# pylint: disable=too-many-arguments
297+
# pylint: disable=too-many-positional-arguments
298+
# pylint: disable=too-many-locals
296299
assert len(outpaths) == num_reducers
297300
outparent = outpaths[0].parent
298301
assert all(i.parent == outparent for i in outpaths)

0 commit comments

Comments
 (0)