Files
pytorch-ts/pts/exception.py
T
Kashif Rasul 5772c04ffe ran black
2019-10-30 09:42:02 +01:00

4 lines
151 B
Python

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