def _expect_row_value(key: str, row: agate.Row): if key not in row.keys(): raise InternalException( 'Got a row without "{}" column, columns: {}' .format(key, row.keys()) ) return row[key]
def _expect_row_value(key: str, row: agate.Row): if key not in row.keys(): raise dbt.exceptions.InternalException( f'Got a row without \'{key}\' column, columns: {row.keys()}') return row[key]