Skip to content

Commit 3300676

Browse files
Fix: Lint
1 parent 8aee374 commit 3300676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_validation_framework/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def apply_to_df(df, func, *args, nb_processes=None, redirect_stdout=None, **kwar
129129
# Start the computation
130130
results_list = pool.imap(
131131
_apply_to_df_internal,
132-
zip(chunks, repeat([func] + list(args)), repeat(kwargs)),
132+
zip(chunks, repeat([func] + list(args)), repeat(kwargs)), # pylint: disable=E0606
133133
)
134134
pool.close()
135135

0 commit comments

Comments
 (0)