From 7fbe1ecb9cfb1cba4b55a11ccf18510aa2cee1e5 Mon Sep 17 00:00:00 2001 From: Thephaseless Date: Wed, 24 Jul 2024 20:41:57 +0000 Subject: [PATCH] changed to path type --- src/utils/consts.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils/consts.py b/src/utils/consts.py index f222974..2262b81 100644 --- a/src/utils/consts.py +++ b/src/utils/consts.py @@ -1,3 +1,5 @@ +from pathlib import Path + CHALLENGE_TITLES = [ # Cloudflare "Just a moment...", @@ -12,4 +14,4 @@ EXTENTION_REPOSITIORIES = [ SLEEP_SECONDS = 1 -EXTENTIONS_PATH = "./.extentions" +EXTENTIONS_PATH = Path(".extentions")