File tree 3 files changed +3
-3
lines changed
tests/integrations/feature_flags
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class FeatureFlagsIntegration(Integration):
16
16
@example
17
17
```
18
18
import sentry_sdk
19
- from sentry_sdk.integrations.featureflags import FeatureFlagsIntegration, add_feature_flag
19
+ from sentry_sdk.integrations.feature_flags import FeatureFlagsIntegration, add_feature_flag
20
20
21
21
sentry_sdk.init(dsn="my_dsn", integrations=[FeatureFlagsIntegration()]);
22
22
@@ -25,7 +25,7 @@ class FeatureFlagsIntegration(Integration):
25
25
```
26
26
"""
27
27
28
- identifier = "featureflags "
28
+ identifier = "feature_flags "
29
29
30
30
@staticmethod
31
31
def setup_once ():
File renamed without changes.
Original file line number Diff line number Diff line change 4
4
import pytest
5
5
6
6
import sentry_sdk
7
- from sentry_sdk .integrations .featureflags import (
7
+ from sentry_sdk .integrations .feature_flags import (
8
8
FeatureFlagsIntegration ,
9
9
add_feature_flag ,
10
10
)
You can’t perform that action at this time.
0 commit comments