openapi-generators/openapi-python-client

Auto generated use of the client with context manager is wrong

idan3 opened this issue · 0 comments

idan3 commented

There should be a new instance every time we use the with statement. because if not the next time you use the client you'll get "Cannot reopen a client instance, once it has been closed."

Like in this example you should write in the docs:
with Client(base_url="Somthing") as client:
and not:
with client as client: