We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a018eb commit e9517a8Copy full SHA for e9517a8
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "aniworld"
3
-version = "3.8.2"
+version = "3.9.0"
4
authors = [
5
{ name="Phoenixthrush UwU", email="contact@phoenixthrush.com" },
6
]
src/aniworld/web/database.py
@@ -12,7 +12,7 @@
12
13
def get_database_path() -> str:
14
"""Get the persistent database path based on OS"""
15
- if os.path.exists('/.dockerenv'): # 2. Docker environment
+ if os.path.exists("/.dockerenv"): # 2. Docker environment
16
db_dir = "/app/data"
17
elif os.name == "nt": # 2. Windows
18
appdata = os.environ.get("APPDATA", os.path.expanduser("~"))
0 commit comments