Skip to content

Commit

Permalink
🎨 Address system check warning in test serializer
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Jan 22, 2025
1 parent 8c29ae8 commit b99e37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openforms/api/tests/test_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def validate_not_staff(user: User):


class UserSerializer(serializers.ModelSerializer):
extra_field = serializers.CharField(required=False)
extra_field = serializers.CharField(required=False, allow_blank=True)

class Meta:
model = User
Expand Down

0 comments on commit b99e37f

Please sign in to comment.