Spaces:
Runtime error
Runtime error
File size: 337 Bytes
0e02b97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from __future__ import annotations
__all__: list[str] = ["add_two_numbers"]
def add_two_numbers(a: int, b: int) -> int: # noqa: D401
"""Add two numbers together.
Args:
a (int): First number to add.
b (int): Second number to add.
Returns:
int: The sum of the two numbers.
"""
return a + b |