Skip to content

Commit dc79898

Browse files
authored
Merge pull request #1081 from hkad98/jkd/fix-type
fix: mypy findings
2 parents dbb663a + 50665a3 commit dc79898

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gooddata-pandas/gooddata_pandas/good_pandas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(
3939
"""
4040
if headers_host is not None:
4141
custom_headers_["Host"] = headers_host
42-
self._sdk = GoodDataSdk.create(host, token, USER_AGENT, **custom_headers_)
42+
self._sdk = GoodDataSdk.create(host, token, USER_AGENT, executions_cancellable=False, **custom_headers_)
4343
self._series_per_ws: dict[str, SeriesFactory] = dict()
4444
self._frames_per_ws: dict[str, DataFrameFactory] = dict()
4545

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)