Skip to content

Commit

Permalink
Fixed missing encoding (Issue Deci-AI#999) (Deci-AI#1044)
Browse files Browse the repository at this point in the history
  • Loading branch information
T0T4R4 authored and geoffrey-g-delhomme committed May 26, 2023
1 parent 7345ad1 commit 350dfcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/super_gradients/common/abstractions/mute_processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def mute_current_process():
# Ignore prints
import sys

sys.stdout = open(os.devnull, "w")
sys.stdout = open(os.devnull, "w", encoding="utf-8")

# Only show ERRORS
process_loggers = [logging.getLogger(name) for name in logging.root.manager.loggerDict]
Expand Down

0 comments on commit 350dfcc

Please sign in to comment.