Skip to content

Commit

Permalink
chore: replace appdirs with platformdirs
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Sep 18, 2024
1 parent 2a2c768 commit 65b89ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dooit/api/_vars.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pathlib import Path
from appdirs import user_data_dir
from platformdirs import user_data_dir

# ROOT_FOLDER = Path(__file__).parent.parent.parent.absolute() # local db file for testing

Expand Down
2 changes: 1 addition & 1 deletion dooit/ui/api/plug.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from collections import defaultdict
from pathlib import Path
from typing import Callable
from appdirs import user_config_dir
from platformdirs import user_config_dir
from .loader import load_dir, load_file

MAIN_FOLDER = "dooit_v3"
Expand Down

0 comments on commit 65b89ba

Please sign in to comment.