Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
awdeorio committed Nov 6, 2024
1 parent d1e33e1 commit f690047
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion madoop/mapreduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@


def mapreduce(
*,
input_path,
output_dir,
map_exe,
Expand Down Expand Up @@ -287,7 +288,9 @@ def partition_keys_custom(
Update the data structures provided by the caller input_keys_stats and
output_keys_stats. Both map a filename to a set of of keys.
"""
# pylint: disable=too-many-arguments,too-many-locals
# pylint: disable=too-many-arguments
# pylint: disable=too-many-positional-arguments
# pylint: disable=too-many-locals
assert len(outpaths) == num_reducers
outparent = outpaths[0].parent
assert all(i.parent == outparent for i in outpaths)
Expand Down

0 comments on commit f690047

Please sign in to comment.