diff --git a/examples/trivial_save.py b/examples/trivial_save.py deleted file mode 100644 index 1622e7b..0000000 --- a/examples/trivial_save.py +++ /dev/null @@ -1,10 +0,0 @@ -import nancy - -if __name__ == "__main__": - - # Inspect the schema of the default in-memory database (created on first - # import of nancy module) - for c in nancy._conn.iterdump(): - print(c) - - nancy.save_data({}, desc="This example script actually saves nothing")