(self, vertical=True, horizontal=True)
| 744 | """ |
| 745 | |
| 746 | def __init__(self, vertical=True, horizontal=True): |
| 747 | super().__init__() |
| 748 | self.vertical = vertical |
| 749 | self.horizontal = horizontal |
| 750 | |
| 751 | def forward(self, inp): |
| 752 | assert isinstance( |
no outgoing calls
no test coverage detected