Return whether the layer is materialized or not
(self)
| 104 | |
| 105 | @abc.abstractmethod |
| 106 | def is_materialized(self) -> bool: |
| 107 | """Return whether the layer is materialized or not""" |
| 108 | return True |
| 109 | |
| 110 | @abc.abstractmethod |
| 111 | def get_output_keys(self) -> Set[Key]: |
no outgoing calls
no test coverage detected