Skip to content

Commit 0180151

Browse files
committed
remove weakref import
1 parent 9dd2f1e commit 0180151

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

bigframes/dataframe.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
Union,
4040
)
4141
import warnings
42-
import weakref
4342

4443
import bigframes_vendored.constants as constants
4544
import bigframes_vendored.pandas.core.frame as vendored_pandas_frame
@@ -88,7 +87,6 @@
8887
if typing.TYPE_CHECKING:
8988
from _typeshed import SupportsRichComparison
9089

91-
from bigframes.display.anywidget import TableWidget
9290
import bigframes.session
9391

9492
SingleItemValue = Union[bigframes.series.Series, int, float, str, Callable]
@@ -113,9 +111,6 @@ class DataFrame(vendored_pandas_frame.DataFrame):
113111
# Must be above 5000 for pandas to delegate to bigframes for binops
114112
__pandas_priority__ = 15000
115113

116-
# Type annotation for anywidget instance
117-
_anywidget_instance: Optional[weakref.ReferenceType["TableWidget"]] = None
118-
119114
def __init__(
120115
self,
121116
data=None,

0 commit comments

Comments
 (0)