From 7486601f0a99f6f27d1e36dba7b6a66f75fd4a4f Mon Sep 17 00:00:00 2001 From: Saood Karim Date: Sat, 24 May 2025 03:49:43 -0500 Subject: [PATCH] remove print --- gguf-py/gguf/quants.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gguf-py/gguf/quants.py b/gguf-py/gguf/quants.py index 1d0de0f4..eed78d93 100644 --- a/gguf-py/gguf/quants.py +++ b/gguf-py/gguf/quants.py @@ -61,7 +61,6 @@ def quantize(data: np.ndarray, qtype: GGMLQuantizationType) -> np.ndarray: elif (q := _type_traits.get(qtype)) is not None: return q.quantize(data) else: - print(_type_traits) raise NotImplementedError(f"Quantization for {qtype.name} is not yet implemented")