diff --git a/demo.ipynb b/demo.ipynb index a2d1d8f..dc2146d 100644 --- a/demo.ipynb +++ b/demo.ipynb @@ -96,8 +96,8 @@ "Try running the following cell to see if the installation worked.\n", "Please note that this may take up to a minute; if you see `[*]` next to the cell, that means it is still running.\n", "\n", - "If you get an output along the lines of \n", - "``` None: + """ + Simple function to assert the import was successful. + """ + from importlib.metadata import version + module_version = version(__package__) + print(f"Succesfully imported {__package__} version {module_version}.")