From 8792bc9fe86bfa8bcfe581a6a9b903426fbf7a0d Mon Sep 17 00:00:00 2001 From: Meredith Date: Fri, 18 May 2018 14:12:47 -0700 Subject: [PATCH] feat(integrations): remove unused 'get_pipeline' --- src/sentry/identity/base.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/sentry/identity/base.py b/src/sentry/identity/base.py index 21487c792514dc..bbff8a69be4dd6 100644 --- a/src/sentry/identity/base.py +++ b/src/sentry/identity/base.py @@ -34,13 +34,6 @@ def __init__(self, **config): self.config = config self.logger = logging.getLogger('sentry.identity.%s'.format(self.key)) - def get_pipeline(self): - """ - Return a list of AuthView instances representing the authentication - pipeline for this provider. - """ - raise NotImplementedError - def build_identity(self, state): """ Return a mapping containing the identity information.