From 1879951bc098659413b925439f2be72eff7385bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20B=C3=A9dard-Couture?= Date: Sat, 18 May 2024 14:42:30 -0400 Subject: [PATCH] Add space around TRT_VERSION variable assignment (=) to respect linting --- frigate/detectors/plugins/tensorrt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/detectors/plugins/tensorrt.py b/frigate/detectors/plugins/tensorrt.py index d43b9c902..6febd1e33 100644 --- a/frigate/detectors/plugins/tensorrt.py +++ b/frigate/detectors/plugins/tensorrt.py @@ -6,7 +6,7 @@ import numpy as np try: import tensorrt as trt from cuda import cuda - TRT_VERSION=int(trt.__version__[0:trt.__version__.find(".")]) + TRT_VERSION = int(trt.__version__[0:trt.__version__.find(".")]) TRT_SUPPORT = True except ModuleNotFoundError: