Skip to content

Commit

Permalink
prefix datadir and file with gc_
Browse files Browse the repository at this point in the history
  • Loading branch information
krunch3r76 committed Feb 6, 2022
1 parent d78ceef commit 342c70a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spyu.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,12 +377,12 @@ async def spyu(myModel, CPUmax=Decimal("0.361"), ENVmax=Decimal("inf"), maxGlm=D
if __name__ == "__main__":
debug.dlog("starting")

datadir = get_datadir() / "spyu"
datadir = get_datadir() / "gc_spyu"
try:
datadir.mkdir(parents=True)
except FileExistsError:
pass
dbfilepath=datadir / "spyu.db"
dbfilepath=datadir / "gc_spyu.db"


myModel =MyModel(str(dbfilepath))
Expand Down

0 comments on commit 342c70a

Please sign in to comment.