From 4a5cd6924fd26e3962fab1ce104c822f8c277fd8 Mon Sep 17 00:00:00 2001 From: Kerfuffle <44031344+KerfuffleV2@users.noreply.github.com> Date: Thu, 9 Nov 2023 00:21:15 -0700 Subject: [PATCH] Clean up gguf-py/examples/modify_gguf.py whitespace Co-authored-by: Jared Van Bortel --- gguf-py/examples/modify_gguf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gguf-py/examples/modify_gguf.py b/gguf-py/examples/modify_gguf.py index 48d4b80f1..bf63cc245 100644 --- a/gguf-py/examples/modify_gguf.py +++ b/gguf-py/examples/modify_gguf.py @@ -5,7 +5,7 @@ from pathlib import Path # Necessary to load the local gguf package sys.path.insert(0, str(Path(__file__).parent.parent)) -from gguf import GGUFReader # noqa: E402 +from gguf import GGUFReader # noqa: E402 def change_gguf(reader: GGUFReader, key: str, value: str) -> None: field = reader.get_field(key)