Skip to content
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
2 changes: 1 addition & 1 deletion gooddata-pandas/gooddata_pandas/good_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(
"""
if headers_host is not None:
custom_headers_["Host"] = headers_host
self._sdk = GoodDataSdk.create(host, token, USER_AGENT, **custom_headers_)
self._sdk = GoodDataSdk.create(host, token, USER_AGENT, executions_cancellable=False, **custom_headers_)
self._series_per_ws: dict[str, SeriesFactory] = dict()
self._frames_per_ws: dict[str, DataFrameFactory] = dict()

Expand Down
4 changes: 3 additions & 1 deletion gooddata-sdk/gooddata_sdk/catalog/filter_by.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# (C) 2024 GoodData Corporation
from __future__ import annotations

from typing import Optional

import attr
from gooddata_api_client.model.filter_by import FilterBy

Expand All @@ -9,7 +11,7 @@

@attr.s(auto_attribs=True, kw_only=True)
class CatalogFilterBy(Base):
label_type: str
label_type: Optional[str]

@staticmethod
def client_class() -> type[FilterBy]:
Expand Down
Loading