Merge "Remove the useless else."

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

View File

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