import pytest def test_addition(): assert add(2, 3) == 5 # Function doesn't exist yet
def add(a, b): return a + b
def add(a: int, b: int) -> int: return a + b # Adding types
Thank you for your time! 🚀