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
The following raises a json decode error from a 404 response
fields=c.acs5.fields(year=2020)
This is because ACSClient.tables calls _switch_endpoints which mutates the state of the client. which ACSClient.fields does not. The simplest hotfix is to add the following code to ACSClient
The following works
The following raises a json decode error from a 404 response
This is because
ACSClient.tables
calls_switch_endpoints
which mutates the state of the client. whichACSClient.fields
does not. The simplest hotfix is to add the following code toACSClient
But I highly suggest removing the mutable state from
ACSClient
.The text was updated successfully, but these errors were encountered: