We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d5a2c commit 344f56fCopy full SHA for 344f56f
1 file changed
obstore/python/obstore/auth/earthdata.py
@@ -84,7 +84,7 @@ class NasaEarthdataCredentialProvider:
84
85
# Download the file by streaming chunks
86
try:
87
- result = obstore.get(store, filename)
+ result = store.get(filename)
88
with open(filename, "wb") as f:
89
for chunk in iter(result):
90
f.write(chunk)
@@ -275,7 +275,7 @@ class NasaEarthdataAsyncCredentialProvider:
275
276
277
278
- result = await obstore.get_async(store, filename)
+ result = await store.get(filename)
279
280
async for chunk in aiter(result):
281
0 commit comments