You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of 1.9.0, the whole package is broken on import, as client.py tries to import PaymentRequestClient from .payment_requests.clients, which isn't being recognized.
As of 1.9.0, the whole package is broken on import, as
client.py
tries to importPaymentRequestClient
from.payment_requests.clients
, which isn't being recognized.To Reproduce
Here is a one-liner to reproduce the error:
docker run -it --entrypoint bash python:latest -c "python3 -m pip install lago_python_client==1.9.0 && python3 -c 'import lago_python_client'"
This installs the client version 1.9.0 on a clean python install, and imports the package.
Output:
Expected behavior
It should not fail on import. For example on version
1.7.0
, if you run:docker run -it --entrypoint bash python:latest -c "python3 -m pip install lago_python_client==1.9.0 && python3 -c 'import lago_python_client'"
There is no error.
Support
The text was updated successfully, but these errors were encountered: