This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from glob import glob | |
from pathlib import Path | |
import subprocess | |
from typing import Optional | |
class Colors: | |
RESET = "\033[0m" | |
RED = "\033[31m" | |
GREEN = "\033[92m" |