Skip to content

Commit

Permalink
Fix missing %db_reset output for token modes (#691)
Browse files Browse the repository at this point in the history
* Fix missing  output for token modes

* update changelog
  • Loading branch information
michaelnchin authored Sep 4, 2024
1 parent 87aa81d commit 40614cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ Starting with v1.31.6, this file will contain a record of major features and upd
- Upgraded Neo4j Bolt driver to v5.x ([Link to PR](https://github.com/aws/graph-notebook/pull/682))
- Added `%get_import_task` line magic ([Link to PR](https://github.com/aws/graph-notebook/pull/668))
- Added `--export-to` JSON file option to `%%graph_notebook_config` ([Link to PR](https://github.com/aws/graph-notebook/pull/684))
- Fix ipython config dir logic ([Link to PR](https://github.com/aws/graph-notebook/pull/687))
- Improved iPython config directory retrieval logic ([Link to PR](https://github.com/aws/graph-notebook/pull/687))
- Fixed `%db_reset` output for token modes ([Link to PR](https://github.com/aws/graph-notebook/pull/691))

## Release 4.5.2 (August 15, 2024)

Expand Down
2 changes: 1 addition & 1 deletion src/graph_notebook/magics/graph_magic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1967,7 +1967,7 @@ def on_button_cancel_clicked(b):
@display_exceptions
@neptune_db_only
def db_reset(self, line, local_ns: dict = None):
self.reset(line, local_ns, service=NEPTUNE_DB_SERVICE_NAME)
return self.reset(line, local_ns, service=NEPTUNE_DB_SERVICE_NAME)

@line_magic
@needs_local_scope
Expand Down

0 comments on commit 40614cf

Please sign in to comment.