OpenIdAuth   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
This is our adjustment to the OpenID provider from Python Social.
3
It does nothing more than adding the provider URL configured in our settings file.
4
"""
5
6
from opensubmit import settings
7
from social_core.backends.open_id import OpenIdAuth as OpenIdAuthBase
8
9
class OpenIdAuth(OpenIdAuthBase):
10
	URL = settings.OPENID_PROVIDER
11