mirror of
https://github.com/qdrant/qdrant-client.git
synced 2026-07-26 12:41:06 -05:00
* move qdrant_openapi_client into qdrant_client.http * add test for exceptions import * upd readme
6 lines
233 B
Python
6 lines
233 B
Python
from typing import Union
|
|
|
|
# This is a dirty hack - proper way it to upgrade OpenAPI generator for at least 5.0
|
|
# But this upgrade will also require updating of all templates. Maybe some other day
|
|
AnyOfstringinteger = Union[str, int]
|