mirror of
https://github.com/NinjaCheetah/WiiPy.git
synced 2025-04-26 13:21:01 -04:00
10 lines
195 B
Python
10 lines
195 B
Python
# "modules/core.py" from WiiPy by NinjaCheetah
|
|
# https://github.com/NinjaCheetah/WiiPy
|
|
|
|
import sys
|
|
|
|
|
|
def fatal_error(msg: str) -> None:
|
|
print(f"\033[31mError:\033[0m {msg}")
|
|
sys.exit(-1)
|