Skip to content

Commit 9b174c5

Browse files
committed
Better comment
1 parent 890081b commit 9b174c5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/sentry/seer/seer_setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111

1212
def get_seer_user_acknowledgement(user_id: int, organization: Organization) -> bool:
13-
# If consent flow is removed via feature flag, always treat as acknowledged
13+
# The consent requirement for generative AI features is being removed
14+
# After GA, remove all calls to this function
1415
if features.has("organizations:gen-ai-consent-flow-removal", organization):
1516
return True
1617

@@ -23,7 +24,8 @@ def get_seer_user_acknowledgement(user_id: int, organization: Organization) -> b
2324

2425

2526
def get_seer_org_acknowledgement(organization: Organization) -> bool:
26-
# If consent flow is removed via feature flag, always treat as acknowledged
27+
# The consent requirement for generative AI features is being removed
28+
# After GA, remove all calls to this function
2729
if features.has("organizations:gen-ai-consent-flow-removal", organization):
2830
return True
2931

0 commit comments

Comments
 (0)