From 4c7c1aa8b3bb1994183618ee44f8dd5a89884bfa Mon Sep 17 00:00:00 2001 From: Matvey Kruglov Date: Wed, 20 Sep 2017 11:47:18 +0300 Subject: [PATCH] Fix typo in AWXDjangoStrategy constructor Signed-off-by: Matvey Kruglov --- awx/sso/strategies/django_strategy.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/awx/sso/strategies/django_strategy.py b/awx/sso/strategies/django_strategy.py index 728e380dc4..74fcb94117 100644 --- a/awx/sso/strategies/django_strategy.py +++ b/awx/sso/strategies/django_strategy.py @@ -13,9 +13,6 @@ class AWXDjangoStrategy(DjangoStrategy): want to ensure we update the SOCIAL_AUTH_STRATEGY setting. """ - def __init__(self, storage, request=None, tpl=None): - super(AWXDjangoStrategy, self).__init__(storage, tpl) - def request_port(self): """Port in use for this request https://github.com/python-social-auth/social-app-django/blob/master/social_django/strategy.py#L76