Skip to content

Commit b03ec97

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e600b99 commit b03ec97

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

xontrib/jedi.py

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,24 @@
1111
contextual_completer,
1212
get_filter_function,
1313
)
14-
1514
from xonsh.parsers.completion_context import CompletionContext
1615

1716
__all__ = ()
1817

1918
import jedi
2019

21-
2220
XONSH_SPECIAL_TOKENS = {
23-
"?",
24-
"??",
25-
"$(",
26-
"${",
27-
"$[",
28-
"![",
29-
"!(",
30-
"@(",
31-
"@$(",
32-
"@",
33-
}
21+
"?",
22+
"??",
23+
"$(",
24+
"${",
25+
"$[",
26+
"![",
27+
"!(",
28+
"@(",
29+
"@$(",
30+
"@",
31+
}
3432

3533

3634
XONSH_SPECIAL_TOKENS_FIRST = {tok[0] for tok in XONSH_SPECIAL_TOKENS}

0 commit comments

Comments
 (0)