mirror of
https://github.com/wassname/pytorch-ts.git
synced 2026-07-09 18:52:29 +08:00
5 lines
152 B
Python
5 lines
152 B
Python
|
|
def assert_pts(condition: bool, message: str, *args, **kwargs) -> None:
|
|
if not condition:
|
|
raise Exception(message.format(*args, **kwargs))
|