diff --git a/src/drstats/dataset.py b/src/drstats/dataset.py index abb4192..638e04f 100644 --- a/src/drstats/dataset.py +++ b/src/drstats/dataset.py @@ -70,7 +70,7 @@ def dump(): print(line) print("```") -for view in db.get_views(): - print(f"export/view-f{view['name']}.json") - with pathlib.Path(f"export/view-f{view['name']}.json").open("w+") as f: - json.dump(view, db.query(view['sql'])) \ No newline at end of file + for view in db.get_views(): + print(f"export/view-f{view['name']}.json") + with pathlib.Path(f"export/view-f{view['name']}.json").open("w+") as f: + json.dump(view, db.query(view['sql'])) \ No newline at end of file