Update example to reflect name change

This commit is contained in:
Jacob Hinkle 2022-09-18 19:44:13 -04:00
parent 9a757da130
commit 6b28b10094

View File

@ -1,10 +1,10 @@
import dprov import nancy
if __name__ == "__main__": if __name__ == "__main__":
# Inspect the schema of the default in-memory database (created on first # Inspect the schema of the default in-memory database (created on first
# import of dprov module) # import of nancy module)
for c in dprov._conn.iterdump(): for c in nancy._conn.iterdump():
print(c) print(c)
dprov.save_data({}, desc="This example script actually saves nothing") nancy.save_data({}, desc="This example script actually saves nothing")