Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
@accepts(a=int, b=int, coerce_type=True)
def coerce_type_and_add_ints(a, b):
return a + b
@accepts(a=int, b=int)
def add_ints(a, b):
return a + b