[TRT EP Perf Tool] Add annotations import to python script to support annotations on Python 3.8 (#23466)

### Description
Adds `from __future__ import annotations` to python script to support
annotations on Python 3.8.



### Motivation and Context
Pipeline that runs this script is using Ubuntu 20.04's default python
version (3.8), which does not support annotations unless one imports
from __future__.
This commit is contained in:
Adrian Lizarraga 2025-01-23 08:54:55 -08:00 committed by GitHub
parent 46dc0b5f21
commit 06fc73b7d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,6 +6,8 @@
Builds an Ubuntu-based Docker image with TensorRT.
"""
from __future__ import annotations
import argparse
import os
import pty