Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 187e279

Browse files
committed
fix lint
1 parent 77f2894 commit 187e279

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

samples/snippets/sessions_and_io_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515

16-
def test_sessions_and_io(project_id, dataset_id) -> None:
16+
def test_sessions_and_io(project_id: str, dataset_id: str) -> None:
1717
YOUR_PROJECT_ID = project_id
1818
YOUR_LOCATION = "us"
1919

@@ -104,6 +104,8 @@ def test_sessions_and_io(project_id, dataset_id) -> None:
104104
# Convert Pandas dataframe to BigQuery DataFrame with the dataframe constructor
105105
df_2 = bpd.DataFrame(pd_df)
106106
# [END bigquery_dataframes_create_dataframe_from_pandas]
107+
assert df_1 is not None
108+
assert df_2 is not None
107109

108110
# [START bigquery_dataframes_convert_bq_dataframe_to_pandas]
109111
import bigframes.pandas as bpd

0 commit comments

Comments
 (0)