LivePortrait / rprint.py
IAsistemofinteres's picture
Upload rprint.py
7c0b54c verified
raw
history blame
No virus
199 Bytes
# coding: utf-8
"""
custom print and log functions
"""
__all__ = ['rprint', 'rlog']
def rprint(*args, **kwargs):
print(*args, **kwargs)
def rlog(*args, **kwargs):
print(*args, **kwargs)