appier 1.34.6__py2.py3-none-any.whl → 1.34.8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
appier/data.py CHANGED
@@ -204,6 +204,8 @@ class TinyAdapter(DataAdapter):
204
204
  return tinydb.TinyDB(storage=tinydb.storages.MemoryStorage)
205
205
 
206
206
  def _drop_db_json(self):
207
+ if not os.path.exists(self.file_path):
208
+ return
207
209
  os.remove(self.file_path)
208
210
 
209
211
  def _drop_db_memory(self):