diff --git a/ChangeLog.md b/ChangeLog.md index 9e1ee01c..902441a6 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd - Gremlin visualization bugfixes ([Link to PR](https://github.com/aws/graph-notebook/pull/166)) - Updated the airport data loadable via %seed to the latest version ([Link to PR](https://github.com/aws/graph-notebook/pull/172)) - Added support for Gremlin Profile API parameters ([Link to PR](https://github.com/aws/graph-notebook/pull/171)) +- Improved %seed so the progress bar is seen to complete ([Link to PR](https://github.com/aws/graph-notebook/pull/173)) ## Release 3.0.2 (July 29, 2021) diff --git a/src/graph_notebook/magics/graph_magic.py b/src/graph_notebook/magics/graph_magic.py index 723ab524..a12409c5 100644 --- a/src/graph_notebook/magics/graph_magic.py +++ b/src/graph_notebook/magics/graph_magic.py @@ -1227,7 +1227,8 @@ def on_button_clicked(b=None): return progress.value += 1 - + # Sleep for two seconds so the user sees the progress bar complete + time.sleep(2) progress.close() with output: print('Done.')