Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderDokuchaev committed Nov 10, 2023
1 parent f8a4c59 commit 2d548ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/post_training/pipelines/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_result_dict(self):
"Quant. time": self.format_time(self.time_quantization),
"Total time": self.format_time(self.time_total),
"FPS": self.fps,
"Status": self.status[:LIMIT_LENGTH_OF_STATUS],
"Status": self.status[:LIMIT_LENGTH_OF_STATUS] if self.status is not None else None,
}


Expand Down

0 comments on commit 2d548ec

Please sign in to comment.