From 4695f8284a91a226c5be88ee44891e4f4ef4ba21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20B=C3=A9dard-Couture?= Date: Sat, 18 May 2024 16:05:06 -0400 Subject: [PATCH] More linting --- frigate/detectors/plugins/tensorrt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/detectors/plugins/tensorrt.py b/frigate/detectors/plugins/tensorrt.py index 650212292..b362f0b0b 100644 --- a/frigate/detectors/plugins/tensorrt.py +++ b/frigate/detectors/plugins/tensorrt.py @@ -109,7 +109,9 @@ class TensorRtDetector(DetectionApi): def _execute(self): if TRT_VERSION < 10: - return self.context.execute_async_v2(bindings=self.bindings, stream_handle=self.stream) + return self.context.execute_async_v2( + bindings=self.bindings, stream_handle=self.stream + ) else: return self.context.execute_v2(self.bindings)