Skip to content

Commit

Permalink
Narrow argument types
Browse files Browse the repository at this point in the history
Co-Authored-By: Jessica Scheick <[email protected]>
  • Loading branch information
mfisher87 and JessicaS11 committed Sep 12, 2024
1 parent a36d17c commit a8996d1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions icepyx/core/granules.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import pprint
import re
import time
from typing import Optional
from xml.etree import ElementTree as ET
import zipfile

Expand All @@ -18,7 +17,7 @@
import icepyx.core.APIformatting as apifmt
from icepyx.core.auth import EarthdataAuthMixin
import icepyx.core.exceptions
from icepyx.core.types import CMRParams, EGISpecificRequiredParams
from icepyx.core.types import CMRParams, EGISpecificParamsSearch
from icepyx.core.urls import DOWNLOAD_BASE_URL, GRANULE_SEARCH_BASE_URL, ORDER_BASE_URL


Expand Down Expand Up @@ -177,8 +176,8 @@ def __init__(

def get_avail(
self,
CMRparams: Optional[CMRParams],
reqparams: Optional[EGISpecificRequiredParams],
CMRparams: CMRParams,
reqparams: EGISpecificParamsSearch,
cloud=False,
):
"""
Expand Down Expand Up @@ -272,7 +271,7 @@ def get_avail(
def place_order(
self,
CMRparams: CMRParams,
reqparams: EGISpecificRequiredParams,
reqparams: EGISpecificParamsSearch,
subsetparams,
verbose,
subset=True,
Expand Down

0 comments on commit a8996d1

Please sign in to comment.