This commit is contained in:
Cayo Puigdefabregas 2024-10-31 10:24:15 +01:00
parent e74ddc47a7
commit 4b3471d24e
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class Command(BaseCommand):
def open(self, filepath):
with open(filepath, 'r') as file:
content = json.loads(file.read())
path_name = save_in_disk(data, self.user.institution.name)
path_name = save_in_disk(content, self.user.institution.name)
self.snapshots.append((content, path_name))
def parsing(self):