From 592c4168201a70bfa75dc9096ac0893a4e718173 Mon Sep 17 00:00:00 2001 From: Yarne Coppens Date: Fri, 2 Aug 2024 12:06:53 +0200 Subject: [PATCH] Added more constant definitions --- src/config/definitions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/config/definitions.py b/src/config/definitions.py index b071e56..56f1f2a 100644 --- a/src/config/definitions.py +++ b/src/config/definitions.py @@ -1,4 +1,7 @@ import os ROOT_PATH = project_root = os.path.dirname(os.path.dirname(os.path.dirname(__file__))) -SECRETS_FILE_PATH = ROOT_PATH + '/secrets/auth.yaml' \ No newline at end of file +SECRETS_FILE_PATH = ROOT_PATH + '/secrets/auth.yaml' + +BGG_MAX_THING_BOARDGAMES = 20.0 +BGG_PLAY_PAGE_SIZE = 100.0 \ No newline at end of file