From 7752780fda975939aab32eca8306e2700f8bb8dc Mon Sep 17 00:00:00 2001 From: honglei Date: Sun, 20 Aug 2023 21:54:01 +0800 Subject: [PATCH] fix isort --- tests/test_class_hierarchy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_class_hierarchy.py b/tests/test_class_hierarchy.py index 0f0ec1f..9e3c5f8 100644 --- a/tests/test_class_hierarchy.py +++ b/tests/test_class_hierarchy.py @@ -3,8 +3,6 @@ import sys import pytest from pydantic import AnyUrl, UrlConstraints -from typing_extensions import Annotated - from sqlmodel import ( BigInteger, Column, @@ -15,6 +13,7 @@ from sqlmodel import ( String, create_engine, ) +from typing_extensions import Annotated MoveSharedUrl = Annotated[ AnyUrl, UrlConstraints(max_length=512, allowed_schemes=["smb", "ftp", "file"])