Skip to content

Commit ee34a06

Browse files
author
mongkok
committed
Removed TYPE_CHECKING import
1 parent 4b97938 commit ee34a06

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

debug_toolbar/panels/pydantic.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import typing as t
44
from collections import OrderedDict
55
from time import perf_counter
6-
from typing import TYPE_CHECKING
76

87
from fastapi import Request, Response
98
from pydantic import BaseModel
@@ -13,7 +12,7 @@
1312
from debug_toolbar.types import ServerTiming, Stats
1413
from debug_toolbar.utils import pluralize
1514

16-
if TYPE_CHECKING:
15+
if t.TYPE_CHECKING:
1716
from pydantic.fields import LocStr, ValidateReturn
1817
from pydantic.types import ModelOrDc
1918

0 commit comments

Comments
 (0)