We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48e1ba8 commit a9e97c1Copy full SHA for a9e97c1
madoop/mapreduce.py
@@ -24,6 +24,7 @@
24
25
26
def mapreduce(
27
+ *,
28
input_path,
29
output_dir,
30
map_exe,
@@ -292,7 +293,9 @@ def partition_keys_custom(
292
293
Update the data structures provided by the caller input_keys_stats and
294
output_keys_stats. Both map a filename to a set of of keys.
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
299
assert len(outpaths) == num_reducers
300
outparent = outpaths[0].parent
301
assert all(i.parent == outparent for i in outpaths)
0 commit comments