File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -638,7 +638,7 @@ def require_load_balancer(self, func):
638638 lambda : self .load_balancer , "Must be connected to a load balancer" , func = func
639639 )
640640
641- def require_no_load_balancer (self , func ) :
641+ def require_no_load_balancer (self , func : Any ) -> Any :
642642 """Run a test only if the client is not connected to a load balancer."""
643643 return self ._require (
644644 lambda : not self .load_balancer , "Must not be connected to a load balancer" , func = func
Original file line number Diff line number Diff line change @@ -638,7 +638,7 @@ def require_load_balancer(self, func):
638638 lambda : self .load_balancer , "Must be connected to a load balancer" , func = func
639639 )
640640
641- def require_no_load_balancer (self , func ) :
641+ def require_no_load_balancer (self , func : Any ) -> Any :
642642 """Run a test only if the client is not connected to a load balancer."""
643643 return self ._require (
644644 lambda : not self .load_balancer , "Must not be connected to a load balancer" , func = func
You can’t perform that action at this time.
0 commit comments