Skip to content

Commit 4e2d01e

Browse files
wuchenCNTRYROA
authored andcommitted
fixed typing import error
Signed-off-by: wuchen <cntryroa@gmail.com>
1 parent d494980 commit 4e2d01e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

vllm/lora/fused_moe_lora.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# SPDX-License-Identifier: Apache-2.0
22
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3-
from typing import dict, list, tuple
43

54
import torch
65
import triton

vllm/lora/layers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# pylint: disable=unused-argument
55
import math
66
from dataclasses import dataclass
7-
from typing import TYPE_CHECKING, Optional, Union, cast, list
7+
from typing import TYPE_CHECKING, Optional, Union, cast
88

99
import torch
1010
import torch.nn as nn

0 commit comments

Comments
 (0)