We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's remove self.client to self._client
The text was updated successfully, but these errors were encountered:
I'm thinking about _client extenstion in FHIR Resources, so, maybe to choose another name
Sorry, something went wrong.
Rename AbstractResource client to __client__ #59
91a34e2
Renamed to __client__ in 2.0.0
__client__
sessions = ( await fhir_client.resources("Session") .search(Raw(**{"user:User.id": user.id})) .fetch_all() )
raises
TypeError: BaseResource.__init__() got multiple values for argument 'client'
because the first argument of BaseResource is still named client. It needs to be renamed as well.
client
No branches or pull requests
Let's remove self.client to self._client
The text was updated successfully, but these errors were encountered: