Spot the bug in connection options

from *args and **kwargs
Python 3.14 intermediate 4 min 1 issue to find

Find why this connection helper silently ignores a caller mistake.

Python
def connect(host, **options):
    timeout = options.get("timeout", 5)
    return f"{host}: timeout={timeout}"

print(connect("db.internal", timeuot=1))
Open in playground
Report an error