From abc958b07e8f183a8c8c23e04275e4e07ec9a8b6 Mon Sep 17 00:00:00 2001 From: Heiner Date: Thu, 23 May 2024 15:19:49 +0200 Subject: [PATCH] Move noqa comment to where the lastest flake8 likes it. --- convert_grok.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convert_grok.py b/convert_grok.py index 05a304407..43615d6ba 100644 --- a/convert_grok.py +++ b/convert_grok.py @@ -244,9 +244,9 @@ def dump_state_dict(f, ggml_type, input_dir, config): tensor_info.append((name, list(tensor.shape), tensor_ggml_type.name)) try: - print( + print( # noqa: NP100 tabulate(tensor_info, headers=["name", "shape", "dtype"], tablefmt="psql") - ) # noqa: NP100 + ) except NameError: pass