From 72241d687012fafc943db3d29ba6900fc8bd6d44 Mon Sep 17 00:00:00 2001 From: Hugh Brown Date: Wed, 4 Mar 2026 10:53:07 -0700 Subject: [PATCH] Correct import order --- backend/app/schemas/board_webhooks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/app/schemas/board_webhooks.py b/backend/app/schemas/board_webhooks.py index 18b601c0..399e36b2 100644 --- a/backend/app/schemas/board_webhooks.py +++ b/backend/app/schemas/board_webhooks.py @@ -2,12 +2,11 @@ from __future__ import annotations +import re from datetime import datetime from typing import Annotated from uuid import UUID -import re - from pydantic import BeforeValidator from sqlmodel import SQLModel