Test Failed
Pull Request — master (#595)
by
unknown
13:42
created

NoOpAuthHandler.authenticate()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 3
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