Skip to content

Commit

Permalink
codefactor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kim committed Mar 27, 2024
1 parent 62d748c commit 8acf348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asf_search/ASFProduct.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def find_urls(self, extension: str = None, pattern: str = r'.*', directAccess: b
- Example: `r'(QA_)+'` to find urls with 'QA_' at least once
param directAccess: should search in s3 bucket urls (Defaults to `False`)
"""
search_list = self._get_s3_urls() if directAccess else self._get_additional_urls()
search_list = self._get_s3_urls() if directAccess else self._get_additional_urls()

def _get_extension(file_url: str):
path = parse.urlparse(file_url).path
Expand Down

0 comments on commit 8acf348

Please sign in to comment.