Skip to content

Commit 2760276

Browse files
committed
add EnhancementAction._to_config_structure
1 parent 96ef8d8 commit 2760276

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/sentry/grouping/enhancer/actions.py

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ def _from_config_structure(cls, val, version: int):
6363
flag, range_direction = REVERSE_ACTION_FLAGS[val >> ACTION_BITSIZE]
6464
return FlagAction(ACTIONS[val & 0xF], flag, range_direction)
6565

66+
def _to_config_structure(self, version: int) -> int | list[str | int]:
67+
raise NotImplementedError()
68+
6669

6770
class FlagAction(EnhancementAction):
6871
"""

0 commit comments

Comments
 (0)