Skip to content

Commit ac7b6ce

Browse files
committed
Fixed unused constant
1 parent 6409740 commit ac7b6ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uchecker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def normalize(data, encoding='utf-8'):
7575

7676
def check_output_with_timeout(*args, **kwargs):
7777
"""Enhanced check_output with timeout support for Python 2/3."""
78-
timeout = kwargs.pop('timeout', 30)
78+
timeout = kwargs.pop('timeout', PROC_TIMEOUT)
7979

8080
try:
8181
import signal

0 commit comments

Comments
 (0)