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