Method
__init__
(
self,
name,
axes,
chunks,
numblocks,
token,
)
Source from the content-addressed store, hash-verified
| 137 | """ |
| 138 | |
| 139 | def __init__( |
| 140 | self, |
| 141 | name, |
| 142 | axes, |
| 143 | chunks, |
| 144 | numblocks, |
| 145 | token, |
| 146 | ): |
| 147 | super().__init__() |
| 148 | self.name = name |
| 149 | self.axes = axes |
| 150 | self.chunks = chunks |
| 151 | self.numblocks = numblocks |
| 152 | self.token = token |
| 153 | self._cached_keys = None |
| 154 | |
| 155 | def __repr__(self): |
| 156 | return f"ArrayOverlapLayer<name='{self.name}'" |
Callers
nothing calls this directly
Tested by
no test coverage detected