You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think this is recommended and we should be using either [TypeError](https://docs.python.org/3/library/exceptions.html#TypeError. ) or ValueError. This is more informative for users of the package as it clearly tells the user that they have a problem with their inputs.
The text was updated successfully, but these errors were encountered:
To validate the user inputs to the sbr calculations we call
assert
to check if the user has provided inputs of the correct type -smart-building-rating-calculator/src/smart_building_rating_calculator/initiate_user_inputs.py
Line 66 in c709491
I don't think this is recommended and we should be using either
[TypeError](https://docs.python.org/3/library/exceptions.html#TypeError. )
orValueError
. This is more informative for users of the package as it clearly tells the user that they have a problem with their inputs.The text was updated successfully, but these errors were encountered: