"""Python module to test drone builds""" import math def circle_area(radius: float): """Calculate the area of a circle :param radius: circle radius :raises ValueError: radius is negative :return: area of the circle """ return math.pi * radius ** 2