Fix File storage's

This commit is contained in:
Alex Root Junior 2018-09-22 02:07:29 +03:00
parent 03a839a108
commit f9005cd8ce

View file

@ -15,7 +15,7 @@ class _FileStorage(MemoryStorage):
path = self.path = pathlib.Path(path)
try:
self.data = self.read(path)
self._data = self.read(path)
except FileNotFoundError:
pass