Add space around TRT_VERSION variable assignment (=) to respect linting

This commit is contained in:
Rémi Bédard-Couture 2024-05-18 14:42:30 -04:00
parent 485f307574
commit 1879951bc0

View File

@ -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: