You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue seems coming from pickled.
The following code ammended this issue, just reporting.
def load(location, auto_dump, sig = True):
'''Return a pickledb object. location is the path to the json file.'''
db = False
while db == False:
try:
db = PickleDB(location, auto_dump, sig)
except:
db = False
return db
The text was updated successfully, but these errors were encountered:
ts0924
added a commit
to ts0924/pickledb
that referenced
this issue
Nov 9, 2023
This issue seems coming from
pickled
.The following code ammended this issue, just reporting.
The text was updated successfully, but these errors were encountered: