Skip to content

Commit

Permalink
Fix import ordering
Browse files Browse the repository at this point in the history
Signed-off-by: Alex-Brooks <[email protected]>
  • Loading branch information
alex-jw-brooks committed Aug 30, 2024
1 parent 5f7dd6e commit f206635
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions vllm/model_executor/models/qwen.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# LICENSE: https://huggingface.co/Qwen/Qwen-7B/blob/main/LICENSE
"""Inference-only QWen model compatible with HuggingFace weights."""

import math
from array import array
from collections import OrderedDict
from functools import partial
import math
from typing import (Any, Callable, Dict, Iterable, List, Literal, Mapping,
Optional, Tuple, TypedDict, Union)

Expand Down Expand Up @@ -45,9 +45,8 @@
from vllm.multimodal import MULTIMODAL_REGISTRY
from vllm.multimodal.base import MultiModalInputs
from vllm.multimodal.utils import cached_get_tokenizer
from vllm.sequence import (IntermediateTensors,
SequenceData,
VLLM_TOKEN_ID_ARRAY_TYPE)
from vllm.sequence import (VLLM_TOKEN_ID_ARRAY_TYPE, IntermediateTensors,
SequenceData)

from .utils import flatten_bn, is_pp_missing_parameter, make_layers

Expand Down

0 comments on commit f206635

Please sign in to comment.