"""Feature flags logic.""" from owsfeatures import features from analytics import config @features.load_features def is_engagement_skips_saves_enabled(): """Check if engagement page skips and saves feature flag is enabled.""" return features.is_feature_enabled( config.ENGAGEMENT_SKIPS_AND_SAVES_FEATURE_FLAG_NAME)