refactor: remove debug print

This commit is contained in:
Herculino Trotta
2024-10-09 00:32:00 -03:00
parent 3dde44b1cd
commit 8acff0b010

View File

@@ -183,8 +183,6 @@ class DynamicModelMultipleChoiceField(forms.ModelMultipleChoiceField):
if not value:
return []
print(value)
string_values = set(str(v) for v in value)
existing_objects = list(
self.queryset.filter(**{f"{self.create_field}__in": string_values})