From d4474baa19ef69721d1a38d00030bc45c2152231 Mon Sep 17 00:00:00 2001 From: stevenang Date: Sun, 23 Jan 2022 09:10:36 -0500 Subject: [PATCH] fixing save issue --- Main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Main.py b/Main.py index 0d21a72..3392ae7 100644 --- a/Main.py +++ b/Main.py @@ -368,10 +368,10 @@ def save_result_to_file(self): # output_file.write('Binary of the given String: %s\n\n' % Tools.string_to_binary(item)) # output_file.write('Result:\n') # output_file.write('%-50s\t%-20s\t%-10s\n' % ('Type of Test', 'P-Value', 'Conclusion')) - # self.write_result_to_file(output_file, self.__test_result[count]) + # self.write_result_to_file(output_file, self._test_result[count]) # output_file.write('\n\n') # count += 1 - result = self.__test_result[0] + result = self._test_result[0] output_file.write('%-50s\t%-20s\t%-10s\n' % ('Type of Test', 'P-Value', 'Conclusion')) self.write_result_to_file(output_file, result) output_file.close()