MCPcopy Index your code
hub / github.com/fastapi/sqlmodel / __delattr__

Method __delattr__

sqlmodel/main.py:533–537  ·  view source on GitHub ↗
(cls, name: str)

Source from the content-addressed store, hash-verified

531 super().__setattr__(name, value)
532
533 def __delattr__(cls, name: str) -> None: # ty: ignore[invalid-method-override]
534 if is_table_model_class(cls):
535 DeclarativeMeta.__delattr__(cls, name)
536 else:
537 super().__delattr__(name)
538
539 # From Pydantic
540 def __new__(

Callers

nothing calls this directly

Calls 1

is_table_model_classFunction · 0.85

Tested by

no test coverage detected