From 05fb6f4e8c57c0cb44e21006c0b24d17acac14f9 Mon Sep 17 00:00:00 2001 From: Jared Van Bortel Date: Mon, 6 Nov 2023 15:57:54 -0500 Subject: [PATCH] sort imports --- convert-hf-to-gguf.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/convert-hf-to-gguf.py b/convert-hf-to-gguf.py index 599dda207..7628043e9 100755 --- a/convert-hf-to-gguf.py +++ b/convert-hf-to-gguf.py @@ -1,17 +1,17 @@ #!/usr/bin/env python3 from __future__ import annotations -from pathlib import Path + +import argparse +import contextlib +import json +import os +import re +import sys from enum import IntEnum +from pathlib import Path from typing import TYPE_CHECKING, Any, ContextManager, Iterator, cast - -import os -import sys -import contextlib -import re -import json -import argparse import numpy as np import torch