From b541817558225cbe3e9f1bc1f6ca10fcf406a623 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 21:25:43 +0000 Subject: [PATCH] refactor: remove unnecessary f-string It is wasteful to use `f-string` mechanism if there are no expressions to be extrapolated. It is recommended to use regular strings instead. --- lynxie/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lynxie/config.py b/lynxie/config.py index 0b7b9ef..2304a81 100644 --- a/lynxie/config.py +++ b/lynxie/config.py @@ -13,7 +13,7 @@ LYNXIE_PREFIX = "?" DATA_PATH = os.path.join("lynxie", "data") ASSETS_PATH = os.path.join("lynxie", "assets") -DATABASE_URI = f"sqlite:///" + os.path.join(DATA_PATH, "lynxie.db") +DATABASE_URI = "sqlite:///" + os.path.join(DATA_PATH, "lynxie.db") # https://tinyfox.dev/docs/ # TODO: Get list from API instead of hardcoding