Skip to content

Commit

Permalink
Fix bandit warnings: allow our implementation
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
  • Loading branch information
penguinolog committed Feb 25, 2019
1 parent 8c57e78 commit dc2e6ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exec_helpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
from .ssh_auth import SSHAuth
from .ssh_client import SSHClient
from .subprocess_runner import Subprocess # nosec # Expected
from .subprocess_runner import SubprocessExecuteAsyncResult
from .subprocess_runner import SubprocessExecuteAsyncResult # nosec # Our implementation

try: # pragma: no cover
__version__ = pkg_resources.get_distribution(__name__).version # type: str
Expand Down
2 changes: 1 addition & 1 deletion exec_helpers/async_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
from .api import ExecHelper
from .exec_result import ExecResult
from .subprocess_runner import Subprocess # nosec # Expected
from .subprocess_runner import SubprocessExecuteAsyncResult
from .subprocess_runner import SubprocessExecuteAsyncResult # nosec # Our implementation

0 comments on commit dc2e6ab

Please sign in to comment.