RedisGraph / redisgraph-py

RedisGraph python client
https://redisgraph.io
BSD 3-Clause "New" or "Revised" License
189 stars 49 forks source link

Remove assert statements from code base #110

Closed boris-42 closed 3 years ago

boris-42 commented 3 years ago

Asserts shall not be a part of production code, they are stript if python is run with -o (optimization parameter)

Instead of assert use if and raise exceptions

swilly22 commented 3 years ago

Thank you!