Skip to content

Commit b6b8bfc

Browse files
committed
Fixing Flake8 compatibility
1 parent 537afe5 commit b6b8bfc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

awswrangler/s3.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2126,7 +2126,9 @@ def merge_datasets(
21262126
elif mode != "append":
21272127
raise exceptions.InvalidArgumentValue(f"{mode} is a invalid mode option.")
21282128

2129-
new_objects: List[str] = copy_objects(paths=paths, source_path=source_path, target_path=target_path, use_threads=use_threads, boto3_session=session)
2129+
new_objects: List[str] = copy_objects(
2130+
paths=paths, source_path=source_path, target_path=target_path, use_threads=use_threads, boto3_session=session
2131+
)
21302132
_logger.debug(f"len(new_objects): {len(new_objects)}")
21312133
return new_objects
21322134

0 commit comments

Comments
 (0)