diff --git a/elasticsearch/client/xpack/__init__.py b/elasticsearch/client/xpack/__init__.py index bae613b3..63b4155f 100644 --- a/elasticsearch/client/xpack/__init__.py +++ b/elasticsearch/client/xpack/__init__.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params +from ..utils import NamespacedClient, query_params from .graph import GraphClient from .license import LicenseClient diff --git a/elasticsearch/client/xpack/deprecation.py b/elasticsearch/client/xpack/deprecation.py index 76de4a00..e9d7d76e 100644 --- a/elasticsearch/client/xpack/deprecation.py +++ b/elasticsearch/client/xpack/deprecation.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path +from ..utils import NamespacedClient, query_params, _make_path class DeprecationClient(NamespacedClient): @query_params() diff --git a/elasticsearch/client/xpack/graph.py b/elasticsearch/client/xpack/graph.py index 0ed22217..62322867 100644 --- a/elasticsearch/client/xpack/graph.py +++ b/elasticsearch/client/xpack/graph.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path +from ..utils import NamespacedClient, query_params, _make_path class GraphClient(NamespacedClient): @query_params('routing', 'timeout') diff --git a/elasticsearch/client/xpack/license.py b/elasticsearch/client/xpack/license.py index 6f4c7c66..371891ac 100644 --- a/elasticsearch/client/xpack/license.py +++ b/elasticsearch/client/xpack/license.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH +from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH class LicenseClient(NamespacedClient): @query_params() diff --git a/elasticsearch/client/xpack/migration.py b/elasticsearch/client/xpack/migration.py index 901324a5..50c17bd3 100644 --- a/elasticsearch/client/xpack/migration.py +++ b/elasticsearch/client/xpack/migration.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH +from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH class MigrationClient(NamespacedClient): @query_params('allow_no_indices', 'expand_wildcards', 'ignore_unavailable') diff --git a/elasticsearch/client/xpack/ml.py b/elasticsearch/client/xpack/ml.py index 668151eb..70b060a9 100644 --- a/elasticsearch/client/xpack/ml.py +++ b/elasticsearch/client/xpack/ml.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH +from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH class MlClient(NamespacedClient): @query_params('from_', 'size') diff --git a/elasticsearch/client/xpack/monitoring.py b/elasticsearch/client/xpack/monitoring.py index 02cce251..5aca0ec5 100644 --- a/elasticsearch/client/xpack/monitoring.py +++ b/elasticsearch/client/xpack/monitoring.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH +from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH class MonitoringClient(NamespacedClient): @query_params('interval', 'system_api_version', 'system_id') diff --git a/elasticsearch/client/xpack/security.py b/elasticsearch/client/xpack/security.py index 651e97b0..9a59bc39 100644 --- a/elasticsearch/client/xpack/security.py +++ b/elasticsearch/client/xpack/security.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH +from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH class SecurityClient(NamespacedClient): @query_params('refresh') diff --git a/elasticsearch/client/xpack/watcher.py b/elasticsearch/client/xpack/watcher.py index eb528b5e..8e531019 100644 --- a/elasticsearch/client/xpack/watcher.py +++ b/elasticsearch/client/xpack/watcher.py @@ -1,4 +1,4 @@ -from elasticsearch.client.utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH +from ..utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH class WatcherClient(NamespacedClient): @query_params()