Skip to content

Commit

Permalink
opendatacube#43 add details on urls
Browse files Browse the repository at this point in the history
Signed-off-by: whatnick <[email protected]>
  • Loading branch information
whatnick committed Apr 20, 2020
1 parent 6dd367b commit 28ff712
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/thredds/odc/thredds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@


def thredds_find_glob(
base_catalog: str, skips: list, select: list, workers: int = 8
) -> list:
base_catalog: str, skips: List[str], select: List[str], workers: int = 8
) -> List[str]:
"""Glob YAML's from base Thredds Catalog recursively
Arguments:
base_catalog {str} -- Base of the catlog to crawl from
user_skips {list} -- Paths to skip in addition to NCI specific defaults
select {list} -- Paths to select (useful YAML's)
workers {int} -- Number of workers to use for Thredds Crawling
Returns:
list -- List of datasets to Index
list -- List of Thredds hosted dataset YAML url's to Index
"""
user_skips = Crawl.SKIPS
user_skips = user_skips.extend(skips)
Expand Down

0 comments on commit 28ff712

Please sign in to comment.