Skip to content

Commit

Permalink
Ensure default is None
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell committed Mar 27, 2024
1 parent 0161004 commit de7da04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/features/versioning/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ def save(self, **kwargs):


class EnvironmentFeatureVersionQuerySerializer(serializers.Serializer):
is_live = serializers.BooleanField(allow_null=True)
is_live = serializers.BooleanField(allow_null=True, required=False, default=None)

0 comments on commit de7da04

Please sign in to comment.