Skip to content

Commit

Permalink
Add a minor change in jupyter_drives/base.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
HaudinFlorence committed Mar 18, 2024
1 parent ce60845 commit 40847ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_drives/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _load_credentials(self):

# if not, try to load credentials from AWS CLI
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
if os.path_exists(aws_credentials_path):
if os.path.exists(aws_credentials_path):
self.access_key_id, self.secret_access_key, self.session_token = self._extract_credentials_from_file(aws_credentials_path)
return

Expand Down

0 comments on commit 40847ee

Please sign in to comment.