Skip to content

Commit

Permalink
Merge pull request #44 from Weidav/main
Browse files Browse the repository at this point in the history
Minor typing fix
  • Loading branch information
CDJellen authored Sep 12, 2024
2 parents b44fac1 + 1d1ccc0 commit a478630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ndbc_api/ndbc_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import warnings
from concurrent.futures import ThreadPoolExecutor
from datetime import datetime, timedelta
from typing import Any, List, Tuple, Union
from typing import Any, List, Sequence, Tuple, Union

import pandas as pd
import netCDF4 as nc
Expand Down Expand Up @@ -455,7 +455,7 @@ def get_data(
use_timestamp: bool = True,
as_df: bool = True,
cols: List[str] = None,
station_ids: Union[List[Union[int, str]], None] = None,
station_ids: Union[Sequence[Union[int, str]], None] = None,
modes: Union[List[str], None] = None,
use_opendap: bool = False
) -> Union[pd.DataFrame, 'nc.Dataset', dict]:
Expand Down

0 comments on commit a478630

Please sign in to comment.