Skip to content

Commit a592573

Browse files
committed
docs: minor update on return type
1 parent d3d2f8a commit a592573

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bigframes/display/anywidget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def __init__(self, dataframe: bigframes.dataframe.DataFrame):
122122
# Also used as a guard to prevent observers from firing during initialization.
123123
self._initial_load_complete = True
124124

125-
def _initial_load(self):
125+
def _initial_load(self) -> None:
126126
"""Get initial data and row count."""
127127
# obtain the row counts
128128
# TODO(b/428238610): Start iterating over the result of `to_pandas_batches()`

bigframes/display/html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2025 Google LLC
1+
# Copyright 2024 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)