Skip to content

Commit 1f36a41

Browse files
committed
fix: incorrect type for CatalogFilterBy
JIRA: TRIVIAL risk: low
1 parent dbb663a commit 1f36a41

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gooddata-sdk/gooddata_sdk/catalog/filter_by.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# (C) 2024 GoodData Corporation
22
from __future__ import annotations
33

4+
from typing import Optional
5+
46
import attr
57
from gooddata_api_client.model.filter_by import FilterBy
68

@@ -9,7 +11,7 @@
911

1012
@attr.s(auto_attribs=True, kw_only=True)
1113
class CatalogFilterBy(Base):
12-
label_type: str
14+
label_type: Optional[str]
1315

1416
@staticmethod
1517
def client_class() -> type[FilterBy]:

0 commit comments

Comments
 (0)