Aaron Stephens
Aaron Stephens
@rammy22 I'll look into adding this!
I'm not sure what the issue is here. There's only one dylib included in the file, so trying to grab the 14th doesn't make sense. I'll have to research a...
@rammy22 this file doesn't appear to be on VirusTotal. If you could provide it, I'll take a look.
@LubosD thanks for the info, I'll take a look.
@jshlbrd , do you have a hash I can use to test?
Any progress on this?
Any thoughts on this?
Ahh, okay, really appreciate the writeup! I thought maybe that was the case with `dict`, but seeing the `Pretty()` update had me convinced that it was at least partially working....
Should I keep this open for the unintended behavior mentioned? Otherwise I'll close it out.
Widgets could be imported under `if typing.TYPE_CHECKING`? Probably a hacky solution but it seems to make `pylint` happy. ```python if typing.TYPE_CHECKING: from ..widget import Widget from ._button import Button from...