Skip to content

Commit 64269c5

Browse files
author
Martin Guitteny
committed
fixup! 🚩(agents) add feature flag for metadata agent
1 parent b4201e7 commit 64269c5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/backend/core/api/feature_flag.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# core/api/feature_flag.py
1+
"""Feature flag handler for the Meet core app."""
2+
23
import logging
34
import os
45
from functools import wraps
@@ -7,12 +8,12 @@
78
from django.conf import settings
89
from django.http import Http404
910

11+
from posthog import Posthog
12+
1013
logging.basicConfig(level=logging.DEBUG)
1114

1215
logger = getLogger(__name__)
1316

14-
from posthog import Posthog
15-
1617

1718
class FeatureFlagError(Exception):
1819
"""Feature flag management error."""

0 commit comments

Comments
 (0)