Skip to content

Commit

Permalink
Fixed unwanted console output
Browse files Browse the repository at this point in the history
  • Loading branch information
louisa-uno committed Dec 10, 2023
1 parent 5616252 commit 4c8a9b9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@
from tkinter import filedialog
import subprocess

subprocess.run("chcp 65001", shell=True, check=True)
subprocess.run("chcp 65001",
shell=True,
check=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)


class bcolors:
Expand Down

0 comments on commit 4c8a9b9

Please sign in to comment.