Merge "Remove the useless else."

This commit is contained in:
Zuul
2021-06-23 15:19:50 +00:00
committed by Gerrit Code Review

View File

@@ -106,8 +106,7 @@ class SoftDeleteInteger(TypeDecorator):
"""Return the binding parameter."""
if value is None:
return None
else:
return int(value)
return int(value)
class String(_String):