Russell Owen

Results 17 comments of Russell Owen

pyflakes found it. I strongly suspect the function is not being used (since it is guaranteed to fail if run) but I didn't bother to check.

Good catch. I was creating nodes instead of scenes. My bad. That leaves item 5, which I reproduced again. Further information: if I drag images into the animations area a...

Since a stable version of 4.3 is out, I suggest we drop this. The drag and drop bug may have been fixed, and if it's not, I'll file a ticket...

I admit it’s not a bug. But it can occur unexpectedly (as happened to me) and the messages printed after ctrl-c are not at all helpful. Even improving those would...

I found this ticket after being driven crazy by the same issue. But I can't make your suggested solution work with mypy 0.812. I am trying to check [ts_salobj](https://github.com/lsst-ts/ts_salobj) which...

The solution I ended up with was two-fold: 1) Avoid importing version.py when type checking: ``` import typing if typing.TYPE_CHECKING: __version__ = "?" else: try: from .version import * except...