Skip to content
This repository has been archived by the owner on Nov 16, 2024. It is now read-only.

Commit

Permalink
remove dev path
Browse files Browse the repository at this point in the history
  • Loading branch information
eccentricOrange committed Apr 30, 2022
1 parent 81fee9c commit c1b40be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions npbc_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
# during development, the DB and schema will both be in "data"

DATABASE_DIR = Path().home() / '.npbc' # normal use path
DATABASE_DIR = Path('data') # development path
# DATABASE_DIR = Path('data') # development path

DATABASE_PATH = DATABASE_DIR / 'npbc.db'

SCHEMA_PATH = Path(__file__).parent / 'schema.sql' # normal use path
SCHEMA_PATH = DATABASE_DIR / 'schema.sql' # development path
# SCHEMA_PATH = DATABASE_DIR / 'schema.sql' # development path


## list constant for names of weekdays
Expand Down

0 comments on commit c1b40be

Please sign in to comment.