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 packages/bigframes/bigframes/operations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
geo_x_op,
geo_y_op,
)
from bigframes.operations.googlesql import GoogleSqlScalarOp
from bigframes.operations.json_ops import (
JSONExtract,
JSONExtractArray,
Expand Down Expand Up @@ -229,7 +230,6 @@
timestamp_add_op,
timestamp_sub_op,
)
from bigframes.operations.googlesql import GoogleSqlScalarOp

__all__ = [
# Base ops
Expand Down
1 change: 0 additions & 1 deletion packages/bigframes/bigframes/operations/geo_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
from bigframes import dtypes
from bigframes.operations import base_ops


GeoStAstextOp = base_ops.create_unary_op(
name="geo_st_astext",
type_signature=op_typing.FixedOutputType(
Expand Down
3 changes: 1 addition & 2 deletions packages/bigframes/bigframes/testing/engine_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
import pandas.testing

from bigframes.core import nodes
from bigframes.session import semi_executor, execution_spec

from bigframes.session import execution_spec, semi_executor

SPEC = execution_spec.ExecutionSpec(
ordered=True,
Expand Down
2 changes: 1 addition & 1 deletion packages/bigframes/tests/system/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
import google.api_core.exceptions
import google.cloud.bigquery as bigquery
import google.cloud.bigquery_connection_v1 as bigquery_connection_v1
import google.cloud.bigquery_storage_v1
import google.cloud.exceptions
import google.cloud.functions_v2 as functions_v2
import google.cloud.bigquery_storage_v1
import google.cloud.resourcemanager_v3 as resourcemanager_v3
import google.cloud.storage as storage # type: ignore
import numpy as np
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import bigframes.operations as bf_ops
from bigframes.core import array_value, nodes, ordering
from bigframes.session import polars_executor, execution_spec
from bigframes.session import execution_spec, polars_executor
from bigframes.testing.engine_utils import assert_equivalence_execution

pytest.importorskip("polars")
Expand Down
Loading