-
- Downloads
Replaces type assertion in configuration_model.py
assert will be removed when compiling to optimized bytecode. This can lead to UB. Instead we are now using if not isinstance(): raise TypeError().
Please register or sign in to comment
assert will be removed when compiling to optimized bytecode. This can lead to UB. Instead we are now using if not isinstance(): raise TypeError().