Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove pytest import #556

Merged
merged 2 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion qdrant_client/local/json_path_parser.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from enum import Enum
from typing import List, Optional, Tuple

import pytest
from pydantic import BaseModel


Expand Down
2 changes: 1 addition & 1 deletion qdrant_client/local/order_by.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from datetime import datetime, timezone
from datetime import datetime
from typing import Any, Optional, Union, get_args

from qdrant_client.local.datetime_utils import parse
Expand Down
6 changes: 1 addition & 5 deletions qdrant_client/local/payload_value_setter.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
from typing import Any, Dict, List, Optional, Type

from qdrant_client.local.json_path_parser import (
JsonPathItem,
JsonPathItemType,
parse_json_path,
)
from qdrant_client.local.json_path_parser import JsonPathItem, JsonPathItemType


def set_value_by_key(payload: dict, keys: List[JsonPathItem], value: Any) -> None:
Expand Down
1 change: 0 additions & 1 deletion qdrant_client/local/sparse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import random
from typing import List, Optional

import numpy as np
Expand Down
Loading