| Total Complexity | 2 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from pyarrow.flight import ServerAuthHandler |
||
| 2 | |||
| 3 | class NoOpAuthHandler(ServerAuthHandler): |
||
| 4 | def authenticate(self, outgoing, incoming): |
||
| 5 | pass |
||
| 6 | |||
| 7 | def is_valid(self, token): |
||
| 8 | return "" |
||
| 9 |