Skip to content

Commit

Permalink
Merge pull request #188 from UBC-MDS/remove-n_files_tested-from-summary
Browse files Browse the repository at this point in the history
removed `n_files_tested` from the summary, to align the terminal verbose format
  • Loading branch information
tonyshumlh authored Jun 21, 2024
2 parents 43869b6 + ae9c621 commit 1f3378d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fixml/modules/workflow/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_completeness_score(self, score_format: str = 'fraction', verbose: bool =
def as_markdown(self, add_quarto_header: bool = False) -> str:

score = self.get_completeness_score(score_format='fraction')
summary_df = self.evaluation_report[['ID', 'Title', 'is_Satisfied', 'n_files_tested']]
summary_df = self.evaluation_report[['ID', 'Title', 'is_Satisfied']]

response = self.response
call_results = response.call_results
Expand Down

0 comments on commit 1f3378d

Please sign in to comment.