Skip to content

Commit e9517a8

Browse files
committed
add v.3.9.0
1 parent 0a018eb commit e9517a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aniworld"
3-
version = "3.8.2"
3+
version = "3.9.0"
44
authors = [
55
{ name="Phoenixthrush UwU", email="contact@phoenixthrush.com" },
66
]

src/aniworld/web/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
def get_database_path() -> str:
1414
"""Get the persistent database path based on OS"""
15-
if os.path.exists('/.dockerenv'): # 2. Docker environment
15+
if os.path.exists("/.dockerenv"): # 2. Docker environment
1616
db_dir = "/app/data"
1717
elif os.name == "nt": # 2. Windows
1818
appdata = os.environ.get("APPDATA", os.path.expanduser("~"))

0 commit comments

Comments
 (0)