Validate `table_to_config_dict`.
(table_to_config_dict)
| 1082 | |
| 1083 | |
| 1084 | def _validate_table_to_config_dict(table_to_config_dict): |
| 1085 | """Validate `table_to_config_dict`.""" |
| 1086 | for k, v in six.iteritems(table_to_config_dict): |
| 1087 | if not isinstance(v, TableConfig): |
| 1088 | raise ValueError('Value of `table_to_config_dict` must be of type ' |
| 1089 | '`TableConfig`, got {} for {}.'.format(type(v), k)) |
| 1090 | |
| 1091 | |
| 1092 | def _validate_feature_to_config_dict(table_to_config_dict, |