Skip to content

Commit

Permalink
ref: remove unused BaseNotificationUserOptionsForm
Browse files Browse the repository at this point in the history
last reference removed in c533ca3
  • Loading branch information
asottile-sentry committed Jan 16, 2025
1 parent 2606658 commit 8dd25a8
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/sentry/plugins/bases/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,6 @@ class NotificationConfigurationForm(forms.Form):
pass


class BaseNotificationUserOptionsForm(forms.Form):
def __init__(self, plugin, user, *args, **kwargs):
self.plugin = plugin
self.user = user
super().__init__(*args, **kwargs)

def get_title(self):
return self.plugin.get_conf_title()

def get_description(self):
return ""

def save(self):
raise NotImplementedError


class NotificationPlugin(Plugin):
slug = ""
description = (
Expand Down

0 comments on commit 8dd25a8

Please sign in to comment.