Skip to content

Commit

Permalink
set default value of Flag to False
Browse files Browse the repository at this point in the history
  • Loading branch information
tushar5526 committed Dec 25, 2023
1 parent 0514c49 commit 7b24935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flagsmith/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class DefaultFlag(BaseFlag):
class Flag(BaseFlag):
feature_id: int
feature_name: str
is_default: bool = field(kw_only=True, default=True)
is_default: bool = field(kw_only=True, default=False)

@classmethod
def from_feature_state_model(
Expand Down

0 comments on commit 7b24935

Please sign in to comment.