Skip to content

Commit 1a838f3

Browse files
committed
fix yapf concordance.
1 parent 8a4a769 commit 1a838f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

awswrangler/redshift.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def write_load_manifest(self, manifest_path, objects_paths):
6161
}
6262
manifest.get("entries").append(entry)
6363
payload = json.dumps(manifest)
64-
client_s3 = self._session.boto3_session.client(service_name="s3", config=self._session.botocore_config)
64+
client_s3 = self._session.boto3_session.client(
65+
service_name="s3", config=self._session.botocore_config)
6566
bucket, path = manifest_path.replace("s3://", "").split("/", 1)
6667
client_s3.put_object(Body=payload, Bucket=bucket, Key=path)
6768
return manifest

awswrangler/session.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ class SessionPrimitives:
227227
It is required to "share" the session attributes to other processes.
228228
That must be "pickable"!
229229
"""
230-
231230
def __init__(
232231
self,
233232
profile_name=None,

0 commit comments

Comments
 (0)