Move noqa comment to where the lastest flake8 likes it.

This commit is contained in:
Heiner 2024-05-23 15:19:49 +02:00
parent 0a1ef1127f
commit abc958b07e

View file

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