Skip to content

Commit

Permalink
aaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
beebls committed Jul 28, 2024
1 parent bbfcb22 commit df6cb6f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion css_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,12 @@ def store_path() -> str:
return os.path.join(get_theme_path(), "STORE")

def get_mappings_folder_path() -> str:
return os.path.join(get_theme_path(), "__MAPPINGS")
path = os.path.join(get_theme_path(), "__MAPPINGS")

if not os.path.exists(path):
create_dir(path)

return path

def store_reads() -> dict:
path = store_path()
Expand Down

0 comments on commit df6cb6f

Please sign in to comment.