Method
__set__
(
self, instance: object, value: Union[SQLCoreOperations[_T], _T]
)
Source from the content-addressed store, hash-verified
| 1455 | return self.fget(instance) |
| 1456 | |
| 1457 | def __set__( |
| 1458 | self, instance: object, value: Union[SQLCoreOperations[_T], _T] |
| 1459 | ) -> None: |
| 1460 | if self.fset is None: |
| 1461 | raise AttributeError("can't set attribute") |
| 1462 | self.fset(instance, value) # type: ignore[arg-type] |
| 1463 | |
| 1464 | def __delete__(self, instance: object) -> None: |
| 1465 | if self.fdel is None: |
Callers
nothing calls this directly
Tested by
no test coverage detected