File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 28
28
# SECURITY WARNING: don't run with debug on in production!
29
29
DEBUG = True
30
30
31
- ALLOWED_HOSTS = ['localhost' , 'brody8991-8000.theiadockernext-1-labs-prod-theiak8s-4-tor01.proxy.cognitiveclass.ai' ]
32
- CSRF_TRUSTED_ORIGINS = ['https://brody8991-8000.theiadockernext-1-labs-prod-theiak8s-4-tor01.proxy.cognitiveclass.ai' ]
31
+ ALLOWED_HOSTS = [ # Fix Line 31: E501 line too long
32
+ 'localhost' ,
33
+ 'brody8991-8000.theiadockernext-1-labs-prod-theiak8s-4-tor01.proxy.cognitiveclass.ai'
34
+ ]
35
+ CSRF_TRUSTED_ORIGINS = [ # Fix Line 32: E501 line too long
36
+ 'https://brody8991-8000.theiadockernext-1-labs-prod-theiak8s-4-tor01.proxy.cognitiveclass.ai'
37
+ ]
33
38
34
39
REST_FRAMEWORK = {
35
40
'DEFAULT_AUTHENTICATION_CLASSES' : [],
61
66
TEMPLATES = [
62
67
{
63
68
'BACKEND' : 'django.template.backends.django.DjangoTemplates' ,
64
- 'DIRS' : [os .path .join (BASE_DIR , 'frontend/static' )], # Corrected spacing
69
+ 'DIRS' : [ # Fix Line 64: E501 line too long
70
+ os .path .join (BASE_DIR , 'frontend/static' )
71
+ ],
65
72
'APP_DIRS' : True ,
66
73
'OPTIONS' : {
67
74
'context_processors' : [
89
96
90
97
AUTH_PASSWORD_VALIDATORS = [
91
98
{
92
- 'NAME' : (
99
+ 'NAME' : ( # Fix Line 93: E501 line too long (using parentheses)
93
100
'django.contrib.auth.password_validation.UserAttributeSimilarityValidator'
94
101
), # User similarity validator
95
102
},
You can’t perform that action at this time.
0 commit comments