Chris Simmons

Results 11 comments of Chris Simmons

Hi. I was hitting the same error and came up with this solution. If you're okay with rounding, you may find it helpful. ``` def round_float_to_decimal(float_value): """ Convert a floating...

I found a solid workaround that uses PyDrive's public API: `SetContentFile("nul")` "nul" is the Windows equivalent to /dev/null. I think the ideal fix is to make SetContentFile not open the...

"Proxy interface" was a poor choice of words on my part. Allow me to explain. For each page in my mobile app, there is typically a Djinni interface for the...

I'll try to get around to this over the holiday break.

> In Java the whole thing works the same except weak references in Java are a bit more tedious to work with. Can anyone tell me if using a weak...

How can we make this work with `onInit`? My module's `onInit` function, which I'm using as documented [here](https://firebase.google.com/docs/functions/config-env?gen=2nd#init-fn) to make parameterized config work, doesn't get called when I run tests.

~Is there a workaround for this?~ EDIT: I'm a dummy and didn't see the stated workaround in the OP. In fact, after seeing the workaround, I'm not sure this is...

Also note that this issue affects the `contextType` and `scalars` settings in the same way that it affects `mappers`.

> Those types are generated from your GraphQL Schema, they are not generated to be used as parent types so this is an intentional behavior because those types are used...

> return null fields as undefined, equivalent to not returning them at all I guess I don't think that returning null fields as undefined is equivalent to not returning them...