Update artist properties without prenormalizing them, but generating errors as if calling `set`. The lack of prenormalization is to maintain backcompatibility.
(self, kwargs)
| 1304 | props, "{cls.__name__!r} object has no property {prop_name!r}") |
| 1305 | |
| 1306 | def _internal_update(self, kwargs): |
| 1307 | """ |
| 1308 | Update artist properties without prenormalizing them, but generating |
| 1309 | errors as if calling `set`. |
| 1310 | |
| 1311 | The lack of prenormalization is to maintain backcompatibility. |
| 1312 | """ |
| 1313 | return self._update_props( |
| 1314 | kwargs, "{cls.__name__}.set() got an unexpected keyword argument " |
| 1315 | "{prop_name!r}") |
| 1316 | |
| 1317 | def set(self, **kwargs): |
| 1318 | # docstring and signature are auto-generated via |
no test coverage detected