(self, name)
| 1692 | self.gridout = None |
| 1693 | |
| 1694 | def __getattr__(self, name): |
| 1695 | attrs = ( |
| 1696 | "_fs", |
| 1697 | "grid_id", |
| 1698 | "key", |
| 1699 | "instance", |
| 1700 | "db_alias", |
| 1701 | "collection_name", |
| 1702 | "newfile", |
| 1703 | "gridout", |
| 1704 | ) |
| 1705 | if name in attrs: |
| 1706 | return self.__getattribute__(name) |
| 1707 | obj = self.get() |
| 1708 | if hasattr(obj, name): |
| 1709 | return getattr(obj, name) |
| 1710 | raise AttributeError |
| 1711 | |
| 1712 | def __get__(self, instance, value): |
| 1713 | return self |
nothing calls this directly
no test coverage detected