From 7b24935b9e3a381ad12736309916fd64d793c1d5 Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Mon, 25 Dec 2023 19:13:34 +0530 Subject: [PATCH] set default value of Flag to False --- flagsmith/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flagsmith/models.py b/flagsmith/models.py index 98289ee..f0c00e9 100644 --- a/flagsmith/models.py +++ b/flagsmith/models.py @@ -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(