feat: schema

This commit is contained in:
Swann Martinez
2019-06-25 11:44:46 +02:00
parent 222fd46469
commit b7b62b0664
5 changed files with 3 additions and 3 deletions

View File

@ -207,7 +207,7 @@ class Client(object):
# SAVING FUNCTIONS
def dump(self, filepath):
with open('result.json',"w") as fp:
with open('dump.json',"w") as fp:
for key, value in self.store.items():
line = json.dumps(value.body)
fp.write(line)