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