refactor: remove prep_web()

This commit is contained in:
Dobin
2024-06-02 14:03:45 +01:00
parent fdc2e6a7f8
commit 7dc585136b
4 changed files with 1 additions and 9 deletions
-2
View File
@@ -22,7 +22,6 @@ class Storage():
project = self.get_project(project_name)
if project is None:
continue
project.settings.prep_web()
projects.append(project)
return projects
@@ -35,7 +34,6 @@ class Storage():
return None
with open(json_path, "rb") as f:
project = pickle.load(f)
project.settings.prep_web()
return project