[None][feat] Use ruff for formatting and linting new files by default (#8629)

Signed-off-by: Robin Kobus <19427718+Funatiq@users.noreply.github.com>
This commit is contained in:
Robin Kobus 2025-11-01 16:11:40 +01:00 committed by GitHub
parent 1551ed8e5f
commit 1b3ad7259d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2755 additions and 127 deletions

File diff suppressed because it is too large Load Diff

View File

@ -13,10 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# isort: off
import torch
from run import QWenInfer, parse_arguments
import tensorrt_llm
# isort: on
if __name__ == '__main__':
args = parse_arguments()

View File

@ -14,8 +14,10 @@
# limitations under the License.
import re
# isort: off
import torch
from run import QWenInfer, parse_arguments, vit_process
# isort: on
def make_display(port=8006):

File diff suppressed because it is too large Load Diff