Skip to content

Commit 69f2bdd

Browse files
committed
fix type issue
1 parent e87367a commit 69f2bdd

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/sentry/integrations/base.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,15 @@ class is just a descriptor for how that object functions, and what behavior
240240
the installer's identity to the organization integration
241241
"""
242242

243-
is_cell_restricted: bool = False
244-
"""
245-
Returns True if each integration installation can only be connected on one cell of Sentry at a
246-
time. It will raise an error if any organization from another cell attempts to install it.
247-
"""
243+
# TODO(cells): Remove once jira integration is updated and works for multi-cell.
244+
# No integrations should be cell restricted.
245+
@property
246+
def is_cell_restricted(self) -> bool:
247+
"""
248+
Returns True if each integration installation can only be connected on one cell of Sentry at a
249+
time. It will raise an error if any organization from another cell attempts to install it.
250+
"""
251+
return False
248252

249253
features: frozenset[IntegrationFeatures] = frozenset()
250254
"""can be any number of IntegrationFeatures"""

0 commit comments

Comments
 (0)