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
23 changes: 19 additions & 4 deletions scripts/postprocess-connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,18 @@
absolute imports that only resolve with the output dir on sys.path.
2. Drop dangling ``from . import <pkg>`` lines from the package stubs, for the
subtrees generate-connect.sh deletes (platform/, demo/, google/protobuf/).
3. Prepend lint/typecheck opt-outs. Generated protobuf code is never clean
under either tool (~64k pylint messages: no-member, abstract-method,
protected-access; plus stub/types-protobuf mismatches under mypy).
3. Prepend lint/typecheck opt-outs for all three checkers this repo runs:
pylint, mypy, and pyright. Generated protobuf code is never clean under any
of them (~64k pylint messages: no-member, abstract-method, protected-access;
stub/types-protobuf mismatches under mypy; ClassVar-in-extension-stub and
``_ExtensionDict`` under pyright).

``# mypy: ignore-errors`` only suppresses *reporting* inside these files — the
declared types are still used, so callers keep real protobuf types.

pyright is the one that gates CI: it is what Speakeasy's "Compile SDK" step
runs. mypy and pylint being clean locally says nothing about whether generation
will pass. Reproduce with ``uv run pyright src/`` before pushing.
"""

from __future__ import annotations
Expand All @@ -27,7 +33,16 @@
import sys
from pathlib import Path

HEADERS = ("# pylint: skip-file", "# mypy: ignore-errors")
HEADERS = (
"# pylint: skip-file",
"# mypy: ignore-errors",
# Speakeasy's "Compile SDK" step runs pyright, which the two headers above do
# nothing for. Only the rules the protobuf pyi plugin actually trips are
# disabled -- notably NOT reportMissingImports, which is what fires when
# `speakeasy run` regenerates pyproject.toml without connect-python and
# evicts the dependency. That one must keep failing loudly.
"# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false",
)

# `import a.b.c_pb2 as _alias` / `from a.b import c_pb2 as _alias`. Bare
# `import x`/`from x import y` without an alias never appears in the generated
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from . import auth_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/auth_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/auth_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/auth_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/buf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/buf/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from . import validate
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/buf/validate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/buf/validate/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from . import validate_pb2
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/buf/validate/validate_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/buf/validate/validate_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/compute_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/compute_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/compute_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from google.protobuf import empty_pb2 as _empty_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/google/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/google/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from . import api
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/google/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/google/api/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from . import visibility_pb2
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/google/api/visibility_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/google/api/visibility_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from google.protobuf import descriptor_pb2 as _descriptor_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/paradigm_params_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/paradigm_params_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from .google.api import visibility_pb2 as _visibility_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/powerbi_selection_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/powerbi_selection_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from google.protobuf.internal import containers as _containers
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from . import agent_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/agent_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/agent_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/agent_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/api_oauth_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/api_oauth_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/api_oauth_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/apps_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/apps_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/apps_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/audit_log_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/audit_log_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/audit_log_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/auth_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/auth_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/auth_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/cells_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/cells_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/chat_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/chat_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/chat_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/checks_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/checks_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/checks_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/common_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/common_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/communications_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/communications_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/communications_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from ..public import options_pb2 as _options_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/config_source_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/config_source_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/connector_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from ..public import options_pb2 as _options_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/connector_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/connector_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/context_prompts_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/context_prompts_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/context_prompts_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/dashboard_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/dashboard_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/dashboard_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/databricks_oauth_connect.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from collections.abc import AsyncGenerator, AsyncIterator, Iterable, Iterator, Mapping
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/databricks_oauth_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/databricks_oauth_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
from ..public import options_pb2 as _options_pb2
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/dataframe_pb2.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
"""Generated protocol buffer code."""
Expand Down
1 change: 1 addition & 0 deletions src/textql_sdk/_connect/public/dataframe_pb2.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pyright: reportInvalidTypeForm=false, reportAttributeAccessIssue=false
# pylint: skip-file
# mypy: ignore-errors
import datetime
Expand Down
Loading