Skip to content

Commit b3dbbb3

Browse files
lint
1 parent 789bd5a commit b3dbbb3

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

packages/bigframes/bigframes/session/bq_caching_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(
8181
enable_polars_execution: bool = False,
8282
publisher: bigframes.core.events.Publisher,
8383
labels: Mapping[str, str] = {},
84-
compiler_name: str = "ibis",
84+
compiler_name: Literal["ibis", "sqlglot"] = "ibis",
8585
cache: Optional[execution_cache.ExecutionCache] = None,
8686
):
8787
self.bqclient = bqclient

packages/bigframes/bigframes/session/proxy_executor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414

1515
from __future__ import annotations
1616

17-
from typing import Mapping, Optional
1817
import typing
1918
import uuid
2019
import warnings
20+
from typing import Mapping, Optional
2121

22+
import google.cloud.bigquery as bigquery
2223
import google.cloud.exceptions
2324

2425
import bigframes.core

0 commit comments

Comments
 (0)