def _get_table_profile()

in src/package/dataplexutils/metadata/wizard.py [0:0]


    def _get_table_profile(self, use_enabled, table_fqn):
        try:
            table_profile = self._get_table_profile_quality(use_enabled, table_fqn)["data_profile"]
            if not table_profile:
                self._client_options._use_profile = False
            return table_profile
        except Exception as e:
            logger.error(f"Exception: {e}.")
            raise e