Skip to content

Commit

Permalink
fix: correct type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
tengomucho committed Sep 10, 2024
1 parent 6857b5f commit c9f11da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def load_llama_model_info(config: "PretrainedConfig") -> Any:
return model_info


def load_model_info(config: PretrainedConfig) -> Any:
def load_model_info(config: "PretrainedConfig") -> Any:
# For now only Llama is supported
if config.model_type == "llama":
return load_llama_model_info(config)
Expand Down

0 comments on commit c9f11da

Please sign in to comment.