Skip to content

Commit

Permalink
Merge pull request microsoft#10 from lserinol/fix-colorama-init
Browse files Browse the repository at this point in the history
Fix colorama init
  • Loading branch information
vyokky authored Feb 22, 2024
2 parents c2fc5aa + 52ddc1b commit 9c32e73
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ufo/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
from io import BytesIO
from typing import Optional

from colorama import Fore, Style
from colorama import Fore, Style, init
from PIL import Image

# init colorama
init()

def print_with_color(text: str, color: str = ""):
"""
Expand Down

0 comments on commit 9c32e73

Please sign in to comment.