[7.x] Sort imports with isort and regenerate APIs

This commit is contained in:
Seth Michael Larson
2021-01-13 14:21:04 -06:00
committed by GitHub
parent e0e54a1128
commit a728aaa491
195 changed files with 1010 additions and 816 deletions
+3 -2
View File
@@ -16,11 +16,12 @@
# under the License.
from __future__ import unicode_literals
import warnings
from elasticsearch.client import _normalize_hosts, Elasticsearch
from elasticsearch.client import Elasticsearch, _normalize_hosts
from ..test_cases import TestCase, ElasticsearchTestCase
from ..test_cases import ElasticsearchTestCase, TestCase
class TestNormalizeHosts(TestCase):
@@ -17,6 +17,7 @@
# under the License.
import pytest
from test_elasticsearch.test_cases import ElasticsearchTestCase
+2 -2
View File
@@ -18,10 +18,10 @@
from __future__ import unicode_literals
from elasticsearch.client.utils import _bulk_body, _make_path, _escape, query_params
from elasticsearch.client.utils import _bulk_body, _escape, _make_path, query_params
from elasticsearch.compat import PY2
from ..test_cases import TestCase, SkipTest
from ..test_cases import SkipTest, TestCase
class TestQueryParams(TestCase):