Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenang committed Jan 3, 2018
1 parent c3b88f7 commit 20e1024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Serial.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
return ((p_value_01, p_value_01 >= 0.01), (p_value_02, p_value_02 >= 0.01))

0 comments on commit 20e1024

Please sign in to comment.