docs: Fix filename in docstring and remove return type from main

This commit is contained in:
teleprint-me 2024-05-12 20:07:30 -04:00
parent f572213c34
commit bf5154f9bc
No known key found for this signature in database
GPG key ID: B0D11345E65C4D48

View file

@ -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"
)