Skip to content

Commit

Permalink
no cover comments for not-windows specific code
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Aug 13, 2024
1 parent b3f8a8e commit ca9936a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suby/proxy_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ def convert_arguments(arguments: Tuple[Union[str, Path], ...], split: bool) -> L
try:
for sub_argument in shlex_split(argument):
converted_arguments.append(sub_argument)
except Exception as e:
raise WrongCommandError(f'The expression "{argument}" cannot be parsed.') from e
except Exception as e: # pragma: no cover
raise WrongCommandError(f'The expression "{argument}" cannot be parsed.') from e # pragma: no cover
else:
converted_arguments.append(argument)
else:
Expand Down

0 comments on commit ca9936a

Please sign in to comment.