FastLED 3.9.15
Loading...
Searching...
No Matches

◆ __init__()

None test_stress.StressTestResults.__init__ ( self)

Definition at line 51 of file test_stress.py.

51 def __init__(self) -> None:
52 self.total_requests: int = 0
53 self.successful_requests: int = 0
54 self.failed_requests: int = 0
55 self.connection_errors: int = 0
56 self.timeout_errors: int = 0
57 self.other_errors: int = 0
58 self.response_times: list[float] = []
59 self.lock: threading.Lock = threading.Lock()
60