Hi, thanks for this great package!
While reviewing the "ecco_download.py" file within "ecco_access", I noticed a potential issue within the definition of the ecco_podaac_download_subset() function at the end of the file.
I see that it calls download_file() twice (at lines 1040 and 1052) with the argument show_noredownload_msg=show_noredownload_msg. However, download_file() as it is defined slightly above (at line 990), does not accept this parameter:
def download_file(url: str, output_file: str, force: bool=False):
Could this be an extra argument from a previous version, or is it something missing in the function definition? Thanks!