Skip to content

Commit

Permalink
Fixing type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswilburlewis committed Feb 5, 2024
1 parent d5b7b43 commit a4527e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyspedas/erg/ground/geomag/gmag_stel_fluxgate.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .gmag_isee_fluxgate import gmag_isee_fluxgate

from typing import List, Union, Optional, Any
from typing import List, Union, Optional, Dict, Any

def gmag_stel_fluxgate(
trange: List[str] = ['2020-08-01', '2020-08-02'],
Expand All @@ -17,7 +17,7 @@ def gmag_stel_fluxgate(
passwd: Optional[str] = None,
time_clip: bool = False,
ror: bool = True
) -> Union[dict, None, list[Union[str, Any]]]:
) -> Union[Dict, None, List[Union[str, Any]]]:
"""
Load data from STEL Fluxgate Magnetometers (wrapper for gmag_isee_fluxgate)
Expand Down

0 comments on commit a4527e3

Please sign in to comment.