Skip to content

Commit 32b5fcf

Browse files
committed
Print in converter.py missed
1 parent 1b31fc1 commit 32b5fcf

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

simple_api/django_object/converter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ def convert_to_object_type(field, field_name, both_fields, input_fields, output_
7272
converted_pk_field = DJANGO_SIMPLE_API_MAP[target_pk_field.__class__]
7373
validators = [DjangoValidator(field_name, x) for x in field.validators]
7474
validators.append(ForeignKeyValidator(target_model))
75-
print(validators)
7675
input_fields[field_name + "_id"] = converted_pk_field(nullable=field.null, exclude_filters=(),
7776
validators=validators)
7877
output_fields[field_name] = ObjectType(target_model, nullable=field.null, exclude_filters=(), validators=validators)

0 commit comments

Comments
 (0)