Skip to content

Commit 08963df

Browse files
authored
Fix failing CI (#89)
remove EUI from getStatus output dictionary
1 parent 5959522 commit 08963df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hvpy/facade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def getStatus() -> Union[bytes, str, Dict[str, Any]]:
167167
--------
168168
>>> from hvpy import getStatus
169169
>>> getStatus()
170-
{'AIA': ..., 'COSMO': ..., 'EUI': ..., 'HMI': ..., 'LASCO': ..., 'SECCHI': ..., 'SWAP': ..., 'XRT': ...}
170+
{'AIA': ..., 'COSMO': ..., 'HMI': ..., 'LASCO': ..., 'SECCHI': ..., 'SWAP': ..., 'XRT': ...}
171171
"""
172172
params = getStatusInputParameters()
173173
return execute_api_call(input_parameters=params)

0 commit comments

Comments
 (0)