mirror of
https://github.com/Windscribe/Desktop-App.git
synced 2026-06-06 20:18:28 +00:00
13 lines
415 B
Python
13 lines
415 B
Python
#!/usr/bin/env python
|
|
# ------------------------------------------------------------------------------
|
|
# Windscribe Build System
|
|
# Copyright (c) 2020-2026, Windscribe Limited. All rights reserved.
|
|
# ------------------------------------------------------------------------------
|
|
import os
|
|
|
|
import colorama
|
|
|
|
# Initialize colorama module for Win32 ANSI color support.
|
|
if os.getenv("TERM") is None:
|
|
colorama.init()
|