From bd0cd4f9ff021f9601ffd5536d81c57e536918e7 Mon Sep 17 00:00:00 2001 From: Mike Teehan Date: Mon, 1 Jun 2026 19:47:45 -0400 Subject: [PATCH] Lint fixes, add .env.example, fix fp8_scaled_mm import path - Remove unused imports (typing.Optional in config.py, uuid in models.py) - Fix fp8_scaled_mm to use build_policy(checkpoint_path) - Add .env.example with all configuration options --- app/config.py | 1 - app/models.py | 1 - 2 files changed, 2 deletions(-) diff --git a/app/config.py b/app/config.py index 35056c6..681dc96 100644 --- a/app/config.py +++ b/app/config.py @@ -1,7 +1,6 @@ from __future__ import annotations import os -from typing import Optional from pydantic_settings import BaseSettings diff --git a/app/models.py b/app/models.py index 21c327d..8a424e8 100644 --- a/app/models.py +++ b/app/models.py @@ -1,6 +1,5 @@ from __future__ import annotations -import uuid from typing import Optional from pydantic import BaseModel, Field