Skip to content

Commit 2ad8169

Browse files
committed
Lint QA
1 parent d8deafd commit 2ad8169

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

mobsf/MobSF/settings.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,11 +241,12 @@
241241
STATIC_URL = '/static/'
242242
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
243243
STATICFILES_STORAGE = 'whitenoise.storage.CompressedStaticFilesStorage'
244-
DATA_UPLOAD_MAX_MEMORY_SIZE = 256 * 1024 * 1024 # 256MB limit for file uploads
244+
# 256MB limit for file uploads
245+
DATA_UPLOAD_MAX_MEMORY_SIZE = 256 * 1024 * 1024
245246
# 400MB per file limit for uncompressed files
246247
ZIP_MAX_UNCOMPRESSED_FILE_SIZE = 400 * 1024 * 1024
247-
ZIP_MAX_UNCOMPRESSED_TOTAL_SIZE = 3000 * 1024 * \
248-
1024 # 3GB total limit for all uncompressed files
248+
# 3GB total limit for all uncompressed files
249+
ZIP_MAX_UNCOMPRESSED_TOTAL_SIZE = 3000 * 1024 * 1024
249250
LOGIN_URL = 'login'
250251
LOGOUT_REDIRECT_URL = '/'
251252
AUTH_PASSWORD_VALIDATORS = [

0 commit comments

Comments
 (0)