Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust argcomplete typings #839

Merged
merged 1 commit into from
Mar 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions traitlets/config/argcomplete_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

try:
import argcomplete
from argcomplete import CompletionFinder
from argcomplete import CompletionFinder # type:ignore
except ImportError:
# This module and its utility methods are written to not crash even
# if argcomplete is not installed.
Expand Down Expand Up @@ -45,7 +45,9 @@ def get_argcomplete_cwords() -> t.Optional[t.List[str]]:
cword_suffix,
comp_words,
last_wordbreak_pos,
) = argcomplete.split_line(comp_line, comp_point)
) = argcomplete.split_line( # type:ignore
comp_line, comp_point
)
except ModuleNotFoundError:
return None

Expand Down Expand Up @@ -73,7 +75,9 @@ def increment_argcomplete_index():
os.environ["_ARGCOMPLETE"] = str(int(os.environ["_ARGCOMPLETE"]) + 1)
except Exception:
try:
argcomplete.debug("Unable to increment $_ARGCOMPLETE", os.environ["_ARGCOMPLETE"])
argcomplete.debug( # type:ignore
"Unable to increment $_ARGCOMPLETE", os.environ["_ARGCOMPLETE"]
)
except (KeyError, ModuleNotFoundError):
pass

Expand Down Expand Up @@ -196,7 +200,7 @@ def _get_completions(
# Instead, check if comp_words only consists of the script,
# if so check if any subcommands start with cword_prefix.
if self.subcommands and len(comp_words) == 1:
argcomplete.debug("Adding subcommands for", cword_prefix)
argcomplete.debug("Adding subcommands for", cword_prefix) # type:ignore
completions.extend(subc for subc in self.subcommands if subc.startswith(cword_prefix))

return completions
Expand Down