From 01f7beb8d23d40e0c245bf00ceec40318b9deeaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Mon, 8 Jul 2024 22:04:49 +0100 Subject: [PATCH] Fix typo Co-authored-by: david qiu --- packages/jupyter-ai/jupyter_ai/chat_handlers/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py b/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py index f386420a1..0f822efce 100644 --- a/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py +++ b/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py @@ -57,7 +57,7 @@ def _get_help_string(self, action): def _format_action_invocation(self, action): if not action.option_strings: - return super._format_action_invocation(action) + return super()._format_action_invocation(action) else: option_strings = [f"`{string}`" for string in action.option_strings] if action.nargs == 0: