Skip to content

Commit ccfde6d

Browse files
committed
fix: formatting
1 parent e8059f2 commit ccfde6d

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

advanced_alchemy/base.py

+11-9
Original file line numberDiff line numberDiff line change
@@ -244,15 +244,17 @@ def create_registry(
244244
with contextlib.suppress(ImportError):
245245
from pydantic import AnyHttpUrl, AnyUrl, EmailStr, IPvAnyAddress, IPvAnyInterface, IPvAnyNetwork, Json
246246

247-
type_annotation_map.update({
248-
EmailStr: String,
249-
AnyUrl: String,
250-
AnyHttpUrl: String,
251-
Json: JsonB,
252-
IPvAnyAddress: String,
253-
IPvAnyInterface: String,
254-
IPvAnyNetwork: String,
255-
})
247+
type_annotation_map.update(
248+
{
249+
EmailStr: String,
250+
AnyUrl: String,
251+
AnyHttpUrl: String,
252+
Json: JsonB,
253+
IPvAnyAddress: String,
254+
IPvAnyInterface: String,
255+
IPvAnyNetwork: String,
256+
}
257+
)
256258
with contextlib.suppress(ImportError):
257259
from msgspec import Struct
258260

0 commit comments

Comments
 (0)