diff --git a/=3, b/=3, new file mode 100644 index 00000000..e69de29b diff --git a/ChangeLog.md b/ChangeLog.md index 2a5687e2..55900686 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,7 @@ Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook. ## Upcoming +- Fixed broken `--help` option for `%%gremlin` ([Link to PR](https://github.com/aws/graph-notebook/pull/630)) ## Release 4.4.2 (June 18, 2024) - Set Gremlin `connection_protocol` defaults based on Neptune service when generating configuration via arguments ([Link to PR](https://github.com/aws/graph-notebook/pull/626)) diff --git a/src/graph_notebook/magics/graph_magic.py b/src/graph_notebook/magics/graph_magic.py index 737d0b28..f1623d09 100644 --- a/src/graph_notebook/magics/graph_magic.py +++ b/src/graph_notebook/magics/graph_magic.py @@ -1033,7 +1033,7 @@ def gremlin(self, line, cell, local_ns: dict = None): help=f'Neptune endpoints only. Connection protocol to use for connecting to the Gremlin ' f'database - either Websockets or HTTP. Valid inputs: {GREMLIN_PROTOCOL_FORMATS}. ' f'If not specified, defaults to the value of the gremlin.connection_protocol field ' - f'in %graph_notebook_config. Please note that this option has no effect on the ' + f'in %%graph_notebook_config. Please note that this option has no effect on the ' f'Profile and Explain modes, which must use HTTP.') parser.add_argument('--explain-type', type=str.lower, default='dynamic', help=f'Explain mode to use when using the explain query mode. '