(model, **updates)
| 1295 | |
| 1296 | @staticmethod |
| 1297 | def _apply_updates(model, **updates) -> None: |
| 1298 | for field, value in updates.items(): |
| 1299 | if value is not None: |
| 1300 | setattr(model, field, value) |
| 1301 | |
| 1302 | @staticmethod |
| 1303 | def _new_command_config( |