From 1a32effa3f49c814be0858506fab0a3f8b4c0db1 Mon Sep 17 00:00:00 2001 From: Jessica Scheick Date: Wed, 10 Jan 2024 15:11:10 -0500 Subject: [PATCH] run linter --- earthaccess/__init__.py | 7 ++----- earthaccess/api.py | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/earthaccess/__init__.py b/earthaccess/__init__.py index 050b5495..c8f859f1 100644 --- a/earthaccess/__init__.py +++ b/earthaccess/__init__.py @@ -10,13 +10,11 @@ get_requests_https_session, get_s3_credentials, get_s3fs_session, - get_edl_token, - granule_query, + in_us_west_2, login, open, search_data, search_datasets, - in_us_west_2, ) from .auth import Auth from .kerchunk import consolidate_metadata @@ -34,8 +32,7 @@ "get_fsspec_https_session", "get_s3fs_session", "get_s3_credentials", - "get_edl_token" - "granule_query", + "get_edl_token" "granule_query", "collection_query", "open", "download", diff --git a/earthaccess/api.py b/earthaccess/api.py index 1cea0abb..ca57a820 100644 --- a/earthaccess/api.py +++ b/earthaccess/api.py @@ -372,6 +372,6 @@ def in_us_west_2() -> str: """ if earthaccess.__store__._running_in_us_west_2() is True: msg = "You are running in AWS region 'us-west-2'" - else: + else: msg = "You are not running in AWS region 'us-west-2'" return msg