From 537ae6aa2a6add003c7bb675f8db94f9a844bbd4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 17:48:20 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- xontrib/jedi.py | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/xontrib/jedi.py b/xontrib/jedi.py index ac36a17..400971c 100644 --- a/xontrib/jedi.py +++ b/xontrib/jedi.py @@ -11,26 +11,24 @@ contextual_completer, get_filter_function, ) - from xonsh.parsers.completion_context import CompletionContext __all__ = () import jedi - XONSH_SPECIAL_TOKENS = { - "?", - "??", - "$(", - "${", - "$[", - "![", - "!(", - "@(", - "@$(", - "@", - } + "?", + "??", + "$(", + "${", + "$[", + "![", + "!(", + "@(", + "@$(", + "@", +} XONSH_SPECIAL_TOKENS_FIRST = {tok[0] for tok in XONSH_SPECIAL_TOKENS}