Skip to content

Commit c9315d8

Browse files
fix(out.py): revert type ignore
1 parent f028055 commit c9315d8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

commitizen/out.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
from termcolor import colored
44

55
if sys.platform == "win32":
6-
# See: https://github.com/python/typeshed/issues/3049
7-
sys.stdout.reconfigure(encoding="utf-8") # type: ignore
6+
sys.stdout.reconfigure(encoding="utf-8")
87

98

109
def write(value: str, *args) -> None:

0 commit comments

Comments
 (0)