in src/package/dataplexutils/metadata/wizard.py [0:0]
def _get_table_description(self, table_fqn):
"""Add stringdocs
Args:
Add stringdocs
Raises:
Add stringdocs
"""
try:
table = self._cloud_clients[constants["CLIENTS"]["BIGQUERY"]].get_table(
table_fqn
)
return table.description
except Exception as e:
logger.error(f"Exception: {e}.")
raise e