From 20e10244834389e3d1d944d1b6beffc33bf134a6 Mon Sep 17 00:00:00 2001 From: Steven Ang Date: Wed, 3 Jan 2018 00:06:27 -0500 Subject: [PATCH] Bug Fix --- Serial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Serial.py b/Serial.py index 558832d..01a7a39 100644 --- a/Serial.py +++ b/Serial.py @@ -66,4 +66,4 @@ def serial_test(binary_data:str, verbose=False, pattern_length=16): print('\tP-Value 02:\t\t\t', p_value_02) print('DEBUG END.') - return (p_value_01, p_value_02, (p_value_01 >= 0.01 and p_value_02 >= 0.01)) \ No newline at end of file + return ((p_value_01, p_value_01 >= 0.01), (p_value_02, p_value_02 >= 0.01)) \ No newline at end of file