Skip to content

Commit

Permalink
add coverage omission
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Nov 21, 2024
1 parent 880ca14 commit efc5156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_typer/management/commands/shellcompletion.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def render(shell: Shells, **context) -> str:
)
elif shell in [Shells.bash, Shells.zsh, Shells.fish]:
typer_scripts._completion_scripts[shell.value] = render(shell, **context)
else:
else: # pragma: no cover
raise NotImplementedError(
gettext("Unsupported shell: {shell}").format(shell=shell.value)
)
Expand Down

0 comments on commit efc5156

Please sign in to comment.