Skip to content

Commit

Permalink
[ENH] add exports of common utilities in utils module (#5266)
Browse files Browse the repository at this point in the history
This PR adds exports of common utilities in `utils` module.

The selection aims at those that users or developers would frequently
import.
  • Loading branch information
fkiraly committed Sep 24, 2023
1 parent 6cd4809 commit d299981
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sktime/utils/__init__.py
@@ -1 +1,10 @@
"""Utility functionality."""

from sktime.utils.estimator_checks import check_estimator
from sktime.utils.plotting import plot_series, plot_windows

__all__ = [
"check_estimator",
"plot_series",
"plot_windows",
]

0 comments on commit d299981

Please sign in to comment.