Skip to content

Commit fd9a876

Browse files
Release v0.6.73
1 parent 5d58b20 commit fd9a876

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "airweave-sdk"
33

44
[tool.poetry]
55
name = "airweave-sdk"
6-
version = "v0.6.72"
6+
version = "v0.6.73"
77
description = ""
88
readme = "README.md"
99
authors = []

src/airweave/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def __init__(
2626

2727
def get_headers(self) -> typing.Dict[str, str]:
2828
headers: typing.Dict[str, str] = {
29-
"User-Agent": "airweave-sdk/v0.6.72",
29+
"User-Agent": "airweave-sdk/v0.6.73",
3030
"X-Fern-Language": "Python",
3131
"X-Fern-SDK-Name": "airweave-sdk",
32-
"X-Fern-SDK-Version": "v0.6.72",
32+
"X-Fern-SDK-Version": "v0.6.73",
3333
**(self.get_custom_headers() or {}),
3434
}
3535
if self._framework_name is not None:

src/airweave/types/filter.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ class Config:
4242
from .min_should import MinShould # noqa: E402, F401, I001
4343
from .nested import Nested # noqa: E402, F401, I001
4444
from .nested_condition import NestedCondition # noqa: E402, F401, I001
45+
from .filter_must_item import FilterMustItem # noqa: E402, F401, I001
46+
from .filter_must_not_item import FilterMustNotItem # noqa: E402, F401, I001
4547
from .filter_must_not import FilterMustNot # noqa: E402, F401, I001
48+
from .min_should_conditions_item import MinShouldConditionsItem # noqa: E402, F401, I001
4649
from .filter_should_item import FilterShouldItem # noqa: E402, F401, I001
47-
from .filter_must_not_item import FilterMustNotItem # noqa: E402, F401, I001
48-
from .must import Must # noqa: E402, F401, I001
49-
from .filter_must_item import FilterMustItem # noqa: E402, F401, I001
5050
from .should import Should # noqa: E402, F401, I001
51-
from .min_should_conditions_item import MinShouldConditionsItem # noqa: E402, F401, I001
51+
from .must import Must # noqa: E402, F401, I001
5252

5353
update_forward_refs(Filter)

0 commit comments

Comments
 (0)