Jacob Rideout
Jacob Rideout
Related: #386 I'm working to expose all the stack layout options which will allow you to use "expand" for the normalized charts.
I'd like to see if we can create a single barChart that will support any orientation. Then barChart will just default to vertical and rowChart will be special case with...
> My guess is it doesn't work on nested data structures like this. Correct it assumes you have a list of objects. Depending on which keys your are melting/casting the...
The relevant MS doc seems to be [MS-OXCICAL](https://docs.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxcical/a685a040-5b69-4c84-b084-795113fb4012). Though it describes how to convert ical to mapi/tnef, I suspect one could use the same reference for the reverse operation. At...
You can have different codecs nested in different parts of the document. We could probably have a universal override but that probably cause other problems. What about returning the raw...
@aniude are you able to share an example tnef that generates this error?
👍 I actually tried to get this going a week or so a go. I struggled with the difference in types between py2 and py3. I think if we used...
I have a typed version locally that was created with https://github.com/dropbox/pyannotate while running the tests. It gets us a lot of the way there. I should have some time in...
@jugmac00 Please go-ahead, I'm not actively working on the typing
What about overloads? I think this handles the more common cases: ``` T = TypeVar('T', Message, EmailMessage) @overload def message_from_string(s: str, _factory: Callable[..., T]) -> T: ... @overload def message_from_string(s:...