Skip to content

Commit 6372a23

Browse files
committed
revert expression change
1 parent 87fd788 commit 6372a23

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

bigframes/core/expression.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,15 @@
1919
import functools
2020
import itertools
2121
import typing
22-
from typing import Callable, Generator, Mapping, TYPE_CHECKING, TypeVar, Union
22+
from typing import Callable, Generator, Mapping, TypeVar, Union
2323

2424
import pandas as pd
2525

2626
from bigframes import dtypes
2727
from bigframes.core import field
2828
import bigframes.core.identifiers as ids
29-
30-
if TYPE_CHECKING:
31-
# Avoid circular imports.
32-
import bigframes.operations
33-
import bigframes.operations.aggregations as agg_ops
29+
import bigframes.operations
30+
import bigframes.operations.aggregations as agg_ops
3431

3532

3633
def const(

0 commit comments

Comments
 (0)