The old depth concat function - we should move to use concat.
(self, *args, **kwargs)
| 179 | return brew.concat(self, *args, order=self.order, **kwargs) |
| 180 | |
| 181 | def DepthConcat(self, *args, **kwargs): |
| 182 | """The old depth concat function - we should move to use concat.""" |
| 183 | print("DepthConcat is deprecated. use Concat instead.") |
| 184 | return self.Concat(*args, **kwargs) |
| 185 | |
| 186 | def Sum(self, *args, **kwargs): |
| 187 | return brew.sum(self, *args, **kwargs) |