FastAPI - Dependency Injection
Why does this FastAPI app raise an error?
from fastapi import FastAPI, Depends
app = FastAPI(dependencies=[Depends('not_a_function')])