Skip to content

Commit 40847ee

Browse files
Add a minor change in jupyter_drives/base.py.
1 parent ce60845 commit 40847ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_drives/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _load_credentials(self):
8787

8888
# if not, try to load credentials from AWS CLI
8989
aws_credentials_path = "~/.aws/credentials" #add read me about credentials path in windows: https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html
90-
if os.path_exists(aws_credentials_path):
90+
if os.path.exists(aws_credentials_path):
9191
self.access_key_id, self.secret_access_key, self.session_token = self._extract_credentials_from_file(aws_credentials_path)
9292
return
9393

0 commit comments

Comments
 (0)