From 0999971fa5837e05b59001abea812d76f07891cd Mon Sep 17 00:00:00 2001 From: Flavia Beo Date: Thu, 24 Oct 2024 16:18:18 -0300 Subject: [PATCH] Fix isort Signed-off-by: Flavia Beo --- vllm/transformers_utils/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vllm/transformers_utils/config.py b/vllm/transformers_utils/config.py index 02ad9bba39ead..a92146eafffd9 100644 --- a/vllm/transformers_utils/config.py +++ b/vllm/transformers_utils/config.py @@ -6,16 +6,16 @@ import huggingface_hub from huggingface_hub import (file_exists, hf_hub_download, try_to_load_from_cache) -from huggingface_hub.utils import (RepositoryNotFoundError, - RevisionNotFoundError, EntryNotFoundError, - LocalEntryNotFoundError) -from transformers import GenerationConfig, PretrainedConfig +from huggingface_hub.utils import (EntryNotFoundError, LocalEntryNotFoundError, + RepositoryNotFoundError, + RevisionNotFoundError) from transformers.models.auto.image_processing_auto import ( get_image_processor_config) from transformers.models.auto.modeling_auto import ( MODEL_FOR_CAUSAL_LM_MAPPING_NAMES) from transformers.utils import CONFIG_NAME as HF_CONFIG_NAME +from transformers import GenerationConfig, PretrainedConfig from vllm.envs import VLLM_USE_MODELSCOPE from vllm.logger import init_logger # yapf conflicts with isort for this block