diff --git a/README.md b/README.md index 0e8690b..e0aac2f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # security Security toolkit for the Python community -This library includes a number of code security controls for various application security vulnerability categories. It can be used directly by programmers, but you may have been introduced to it by having it directly added to you code by automation. +This library includes a number of code security controls for various application security vulnerability categories. It can be used directly by programmers, but you may have been introduced to it by having it directly added to your code by automation. Many of the APIs provided are meant to be drop-in replacements that either offer more secure defaults, harden against common attacks, or at least surface the security questions developers should answer when using risky APIs. diff --git a/src/security/safe_command/api.py b/src/security/safe_command/api.py index 93249b7..5148873 100644 --- a/src/security/safe_command/api.py +++ b/src/security/safe_command/api.py @@ -637,7 +637,6 @@ def check(command: ValidCommand, restrictions: ValidRestrictions, **kwargs) -> N # Check if the executable is set by the Popen kwargs (either executable or shell) # Executable takes precedence over shell. see subprocess.py line 1593 executable_path = _resolve_executable_path(kwargs.get("executable"), venv) - print(executable_path) shell = ( executable_path.name in COMMON_SHELLS if executable_path