Skip to content

Commit

Permalink
Typing
Browse files Browse the repository at this point in the history
  • Loading branch information
avalentino committed Nov 18, 2023
1 parent 0aecbe3 commit ccb8d8f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions asfsmd/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ def query(products):


def make_patterns(
beam="*",
pol="??",
cal=False,
noise=False,
rfi=False,
data=False,
):
beam: Optional[str] = "*",
pol: Optional[str] = "??",
cal: bool = False,
noise: bool = False,
rfi: bool = False,
data: bool = False,
) -> List[str]:
"""Generate a list of patterns according to the specified options.
Patterns are used to match components in the ZIP archive of the
Expand Down Expand Up @@ -270,7 +270,7 @@ def download_annotations(
patterns=patterns,
outdir=outdir,
auth=auth,
block_size=block_size,
block_size=block_size if block_size is not None else BLOCKSIZE,
noprogress=noprogress,
)

Expand Down

0 comments on commit ccb8d8f

Please sign in to comment.