Skip to content

Commit

Permalink
fixing save issue
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenang committed Jan 23, 2022
1 parent 8755819 commit d4474ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit d4474ba

Please sign in to comment.