Files
pytorch-ts/pts/exception.py
T
Kashif Rasul 409788da54 fixes
2019-07-15 18:50:17 +02:00

5 lines
152 B
Python

def assert_pts(condition: bool, message: str, *args, **kwargs) -> None:
if not condition:
raise Exception(message.format(*args, **kwargs))