Skip to content

Commit a5c6da2

Browse files
committed
Added necessary functions
1 parent ea9d136 commit a5c6da2

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

sentry_sdk/integrations/feature_flags.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ class FeatureFlagsIntegration(Integration):
2525

2626
identifier = "feature_flags"
2727

28+
def setup_once():
29+
# type: () -> None
30+
pass
31+
2832

2933
def add_feature_flag(flag, result):
3034
# type: (str, bool) -> None

sentry_sdk/integrations/launchdarkly.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ def __init__(self, ld_client=None):
3737
# Register the flag collection hook with the LD client.
3838
client.add_hook(LaunchDarklyHook())
3939

40+
def setup_once():
41+
# type: () -> None
42+
pass
43+
4044

4145
class LaunchDarklyHook(Hook):
4246

0 commit comments

Comments
 (0)