Skip to content

Commit

Permalink
Add and remove imports for clients
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Feb 21, 2020
1 parent 35f263c commit 0546991
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion elasticsearch/client/cat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
from .utils import NamespacedClient, query_params, _make_path


class CatClient(NamespacedClient):
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/client/license.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
from .utils import NamespacedClient, query_params


class LicenseClient(NamespacedClient):
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/client/migration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
from .utils import NamespacedClient, query_params, _make_path


class MigrationClient(NamespacedClient):
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/client/monitoring.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH, _bulk_body


class MonitoringClient(NamespacedClient):
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/client/remote.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
from .utils import NamespacedClient, query_params


class RemoteClient(NamespacedClient):
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/client/sql.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
from .utils import NamespacedClient, query_params, SKIP_IN_PATH


class SqlClient(NamespacedClient):
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/client/ssl.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
from .utils import NamespacedClient, query_params


class SslClient(NamespacedClient):
Expand Down

0 comments on commit 0546991

Please sign in to comment.