Chuck Daniels
Chuck Daniels
I'd prefer something a bit more unified, perhaps by using a single parameter that is _not_ boolean, particularly since `disable_checksum_validation=True` means that `raise_on_checksum_validation_failure` has no meaning. Perhaps a single parameter...
Given `pydantic`'s massive size, I'd caution against pulling it into the mix, especially if you use it only for the `@validate_call` decorator. If you simply want runtime type validation of...
Given the major speed advantage of `beartype` over `typeguard`, `beartype` might be the better choice. It also appears to be the most actively developed and most PEP-compliant of other choices....
@rupesh2, apologies that this PR has languished a bit. There have been a number of changes to CONTRIBUTING.md since you opened your PR and there are now conflicts. Would you...
Perhaps a silly question, but why do we need to make such an explicit check? I ran across another thread somewhere (I can't find it at the moment) where it...
@jhkennedy, thanks for jumping in and supplying the link to the thread I was looking for. I'm glad to hear that you are in favor of _not_ trying to do...
Fixed by #546
My OCD tendencies generally lead me to keeping my git histories "cleaner" (for better or worse), but I am happy to agree on the "merge by default, sometimes squash" approach...
After a bit of digging, I see that we require a client_id when we request a user's profile. However, _why_ are we including a function to get a user's profile?...