fix import sorting

This commit is contained in:
thatmattlove 2024-05-27 16:25:47 -04:00
parent dd2ce8354b
commit ee5a418264
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
"""API Error Handlers.""" """API Error Handlers."""
# Standard Library
import typing as t import typing as t
# Third Party # Third Party

View file

@ -7,7 +7,7 @@ import secrets
from datetime import datetime from datetime import datetime
# Third Party # Third Party
from pydantic import BaseModel, ConfigDict, field_validator, Field from pydantic import Field, BaseModel, ConfigDict, field_validator
# Project # Project
from hyperglass.log import log from hyperglass.log import log