Skip to content

Commit

Permalink
attempt sub
Browse files Browse the repository at this point in the history
  • Loading branch information
naghim committed Mar 7, 2024
1 parent 9cd978f commit 0bcb984
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion subassistant/globals.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import os

BASE_DIR = os.path.dirname(__file__)
try:
BASE_DIR = __compiled__.containing_dir
except:
BASE_DIR = os.path.dirname(__file__)

RESOURCES_DIR = f'{BASE_DIR}/resources'

0 comments on commit 0bcb984

Please sign in to comment.