Skip to content

Commit

Permalink
no cover comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Aug 13, 2024
1 parent d723f12 commit 1fb7e91
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 @@ -11,8 +11,8 @@

try:
from oslex import split as shlex_split # type: ignore[import, unused-ignore]
except ImportError:
from shlex import split as shlex_split
except ImportError: # pragma: no cover
from shlex import split as shlex_split # pragma: no cover

from suby.errors import RunningCommandError
from suby.subprocess_result import SubprocessResult
Expand Down

0 comments on commit 1fb7e91

Please sign in to comment.