17 lines
362 B
Python
17 lines
362 B
Python
from printColors import PrintColors
|
|
|
|
def py_print(*args: str):
|
|
print(
|
|
PrintColors.FG.blue + "Py",
|
|
"-",
|
|
" ".join(args) + PrintColors.Special.reset
|
|
)
|
|
|
|
def py_error(*args: str):
|
|
print(
|
|
PrintColors.BG.red + "ERROR" + PrintColors.Special.reset,
|
|
PrintColors.FG.blue + "Py",
|
|
"-",
|
|
" ".join(args) + PrintColors.Special.reset
|
|
)
|
|
quit() |