mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-06-01 00:03:14 +00:00
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.
This commit is contained in:
parent
7b3d0cb1ae
commit
b541817558
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue