From f96a25c7d8d521d4b6a910073f6964abc3b31e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Louis=20L=C3=A9toquart?= Date: Fri, 28 Feb 2025 14:12:21 -0500 Subject: [PATCH] chore(lora): running pre-commit hook --- lora/lora.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lora/lora.py b/lora/lora.py index 23a9afdc..6f91ccca 100644 --- a/lora/lora.py +++ b/lora/lora.py @@ -1,9 +1,9 @@ # Copyright © 2023-2024 Apple Inc. -import sys import argparse import json import math +import sys import time from pathlib import Path @@ -15,7 +15,6 @@ import utils as lora_utils from mlx.utils import tree_flatten from models import LoRALinear - # Disable output buffering to see print statements in real-time sys.stdout.reconfigure(line_buffering=True)