Skip to content

Commit 78c0646

Browse files
committed
remove devtools.debug
1 parent 2fddb86 commit 78c0646

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/test_orm_metaclass.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from typing import Annotated, Optional, TypeVar
22

33
import pytest
4-
from devtools import debug
54
from django.db import models
65
from pydantic import GetJsonSchemaHandler, ValidationError, model_serializer
76
from pydantic.json_schema import JsonSchemaValue
@@ -300,7 +299,6 @@ class Meta:
300299
assert SomeModelSchema.__annotations__["field1"] == str
301300

302301
sms = SomeModelSchema(id=1, field1="char", field2="opt")
303-
debug(sms)
304302
assert sms.json() == '{"field2":"opt","id":1,"field1":"char"}'
305303
assert sms.json_schema() == {
306304
"properties": {

0 commit comments

Comments
 (0)