We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e0b388 commit 223ada6Copy full SHA for 223ada6
jupyterhealth_client/_client.py
@@ -517,15 +517,3 @@ def list_observations_df(
517
)
518
records = [tidy_observation(obs) for obs in observations]
519
return pd.DataFrame.from_records(records)
520
-
521
522
-class JupyterHealthCHClient(JupyterHealthClient):
523
- """Deprecated name for JupyterHealthClient"""
524
525
- def __init__(self, *args, **kwargs):
526
- warnings.warn(
527
- "JupyterHealthCHClient is deprecated. Use JupyterHealthClient",
528
- DeprecationWarning,
529
- stacklevel=2,
530
- )
531
- super().__init__(*args, **kwargs)
0 commit comments