seaborn: mark simple deprecations with typing_extensions.deprecated by hamdanal · Pull Request #11130 · python/typeshed
| random_seed: _Seed | None = None, # deprecated | ||
| ) -> NDArray[Any]: ... | ||
| @overload | ||
| @deprecated("Parameter `random_seed` is deprecated in favor of `seed`") |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| **kwargs: Any, | ||
| ) -> Self: ... | ||
| @property | ||
| @deprecated("Attribute `fig` is deprecated in favor of `figure`") |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| **kwargs: Any, | ||
| ) -> FacetGrid: ... | ||
| def distplot( # deprecated | ||
| @deprecated("Function `distplot` is deprecated and will be removed in seaborn v0.14.0") |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| # def set(*args, **kwargs) -> None: ... # deprecated alias for set_theme | ||
| set = set_theme | ||
|
|
||
| @deprecated("Function `set` is deprecated in favor of `set_theme`") |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| color: ColorType, h: float | None = None, l: float | None = None, s: float | None = None | ||
| ) -> tuple[float, float, float]: ... | ||
| def axlabel(xlabel: str, ylabel: str, **kwargs: Any) -> None: ... # deprecated | ||
| @deprecated("Function `axlabel` is deprecated and will be removed in a future version") |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.