fix: Typo in Sqrt tool description (#378)

This commit is contained in:
Nate Barbettini 2025-04-23 06:28:12 -07:00 committed by GitHub
parent 3e35c70f85
commit e46b985cc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,7 +36,6 @@ def sqrt(
) -> Annotated[str, "The square root of the number as a string"]:
"""
Get the square root of a number
If
"""
# Use Decimal for arbitrary precision
a_decimal = Decimal(a)