Browse Source

✏️ Fix typo in assert statement (#419)

pull/439/head
Pablo Marti 6 years ago
committed by Sebastián Ramírez
parent
commit
0c55553328
  1. 2
      fastapi/routing.py

2
fastapi/routing.py

@ -147,7 +147,7 @@ def get_websocket_app(
if errors:
await websocket.close(code=WS_1008_POLICY_VIOLATION)
raise WebSocketRequestValidationError(errors)
assert dependant.call is not None, "dependant.call must me a function"
assert dependant.call is not None, "dependant.call must be a function"
await dependant.call(**values)
return app

Loading…
Cancel
Save