Skip to content

Commit ab0b5dc

Browse files
committed
Fix(config): Update questions per page configurations
1 parent f125e51 commit ab0b5dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Config:
1717
PDF_FOLDER_PATH = os.environ.get('PDF_FOLDER_PATH') or os.path.join(basedir, 'pdf')
1818

1919
# Questions per page
20-
QUESTIONS_PER_PAGE = int(os.environ.get('QUESTIONS_PER_PAGE')) or 10
20+
QUESTIONS_PER_PAGE = int(os.environ.get('QUESTIONS_PER_PAGE') or 10)
2121

2222
# Twilio Verify
2323
TWILIO_ACCOUNT_SID = os.environ.get('TWILIO_ACCOUNT_SID')

0 commit comments

Comments
 (0)