Michael
Michael
My god @obassett, I've been pulling my hair out for hours trying to figure out why my validators were running, but doing nothing. > table=True Much thanks
I did try to make the manual points work for me, but eyeballing them was too inaccurate and no output. I also tried to hack in a quick fix by...
Confirmed working once --medvram is removed. Perhaps add a note to the Textual Inversion tab warning people?
Confirming Exception on Windows 11 Pro 23H2 and Python 3.12.5 with ncclient 0.6.16. Works fine with 0.6.15.
I'd prefer reusing routers rather than hardcoding url paths. Something like... ```py router_1 = Router(path="/") router_2 = Router(path=f"/some-path") app = Litestar( [router_1, router_2], openapi_config=OpenAPIConfig(routes=[(router_1, "/docs"), (router_2, "/schema")]), ) ```