Ниже мой код
# Create a Cloud Bigtable client.
client = bigtable.Client(project=config.GCP_PROJECT_ID)
# Connect to an existing Cloud Bigtable instance.
instance = client.instance(config.BIGTABLE_INSTANCE_ID)
# Open an existing table.
connection = Connection(instance=instance)
table = Table(name=config.BIGTABLE_TABLE_ID, connection=connection)
row_data = table.cells(row=row_key, column=column_family_id, include_timestamp=True)
print("test")
«Тест» никогда не печатался.Table.cells не возвращает никакого результата.У кого-нибудь есть идеи почему?