Skip to content

Commit

Permalink
Update to use ISO datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
seanpmorgan committed Jan 2, 2024
1 parent 8311ad6 commit a4c246f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modelscan/modelscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _generate_results(self) -> Dict[str, Any]:
total_issue_count = len(self._issues.all_issues)

report["modelscan_version"] = __version__
report["timestamp"] = datetime.now().strftime("%m/%d/%Y, %H:%M:%S")
report["timestamp"] = datetime.now().isoformat()
report["input_path"] = self._input_path
report["total_issues"] = total_issue_count
report["summary"] = {"total_issues_by_severity": {}}
Expand Down

0 comments on commit a4c246f

Please sign in to comment.