Skip to content

Commit 23e3bcd

Browse files
authored
Update initial_tox_test.py
1 parent ec66597 commit 23e3bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/initial_tox_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def run_command(command): # 리눅스 명령어 실행
11-
result = subprocess.run(command, shell=True, capture_output=True, text=True)
11+
result = subprocess.run(command, capture_output=True, text=True)
1212
success = result.returncode == 0
1313
output = result.stdout if success else result.stderr
1414
return success, output

0 commit comments

Comments
 (0)