summaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/core/completer.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/completer.py')
-rw-r--r--contrib/python/ipython/py3/IPython/core/completer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/completer.py b/contrib/python/ipython/py3/IPython/core/completer.py
index 8f843dd5844..8260975765c 100644
--- a/contrib/python/ipython/py3/IPython/core/completer.py
+++ b/contrib/python/ipython/py3/IPython/core/completer.py
@@ -1362,9 +1362,9 @@ def match_dict_keys(
# All checks passed!
return True
- filtered_key_is_final: Dict[
- Union[str, bytes, int, float], _DictKeyState
- ] = defaultdict(lambda: _DictKeyState.BASELINE)
+ filtered_key_is_final: Dict[Union[str, bytes, int, float], _DictKeyState] = (
+ defaultdict(lambda: _DictKeyState.BASELINE)
+ )
for k in keys:
# If at least one of the matches is not final, mark as undetermined.