mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-26 12:41:06 -05:00
* new: add pre-commit * new: exclude auto-generated files * new: increase black line length * fix: fix exclude pattern * remove default version * apply black --------- Co-authored-by: Andrey Vasnetsov <andrey@vasnetsov.com>
10 lines
267 B
Python
10 lines
267 B
Python
import logging
|
|
|
|
import qdrant_client.http.api as api
|
|
import qdrant_client.http.api_client as api_client
|
|
import qdrant_client.http.exceptions as exceptions
|
|
|
|
logging.warning(
|
|
"Use of deprecated import: use `qdrant_client.http` instead of `qdrant_openapi_client`"
|
|
)
|