Below is my code
# 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")
"Test" never printed. table.cells not returning any result. Does anyone has any idea why?