From bf5154f9bc717118b20738982902a3e8f738896c Mon Sep 17 00:00:00 2001 From: teleprint-me <77757836+teleprint-me@users.noreply.github.com> Date: Sun, 12 May 2024 20:07:30 -0400 Subject: [PATCH] docs: Fix filename in docstring and remove return type from main --- gguf-py/scripts/gguf-template.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gguf-py/scripts/gguf-template.py b/gguf-py/scripts/gguf-template.py index 301b41628..cfa8bbfb3 100644 --- a/gguf-py/scripts/gguf-template.py +++ b/gguf-py/scripts/gguf-template.py @@ -1,5 +1,5 @@ """ -gguf_chat_template.py - example file to extract the chat template from the models metadata +gguf-template.py - example file to extract the chat template from the models metadata """ from __future__ import annotations @@ -80,7 +80,7 @@ def display_chat_template(chat_template: str, format_template: bool = False): # Example usage: -def main() -> None: +def main(): parser = argparse.ArgumentParser( description="Extract chat template from a GGUF model file" )