Skip to content

Commit

Permalink
Fix pylint x isort fight
Browse files Browse the repository at this point in the history
  • Loading branch information
fredliporace committed Aug 13, 2023
1 parent c9d8de5 commit a1251fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cbers2stac/elasticsearch/es.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import Any, Dict, List, Tuple, Union

from aws_requests_auth.boto_utils import BotoAWSRequestsAuth
from elasticsearch_dsl import Q, Search
from elasticsearch_dsl import Q, Search # pylint: disable=wrong-import-order

from cbers2stac.layers.common.utils import (
STAC_API_VERSION,
Expand All @@ -22,7 +22,9 @@
static_to_api_collection,
)
from elasticsearch import Elasticsearch, RequestsHttpConnection
from elasticsearch.helpers import bulk

from elasticsearch.helpers import bulk # isort: skip


# Get rid of "Found credentials in environment variables" messages
logging.getLogger("botocore.credentials").disabled = True
Expand Down

0 comments on commit a1251fe

Please sign in to comment.