Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VukW committed Apr 10, 2024
1 parent 6a83fff commit a2a8762
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/medperf/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ def check_line(self, line: str) -> bool:

# if line matches conditions, it is just logged to debug; else, shown to user
return (
line_pid == self.proc_pid # hide only `mlcube` framework logs
and isinstance(matched_log_level, int)
and matched_log_level < logging.INFO
line_pid == self.proc_pid # hide only `mlcube` framework logs
and isinstance(matched_log_level, int)
and matched_log_level < logging.INFO
) # hide only debug logs
return False

Expand Down

0 comments on commit a2a8762

Please sign in to comment.