Jeremiah England

Results 9 comments of Jeremiah England

@qiuhuaqi it was working a couple days ago so this might be a different issue...

Yes, a little over a third of them are empty. I've extracted the latest `output.tar.gz` ([download](https://data.alltheplaces.xyz/runs/2020-12-16-14-42-39/output.tar.gz)) to an `output` directory full of geojsons. I get these numbers, ```bash ls -1sh...

I don't see @polarsource mentioned in this issue yet.

For those looking for something to use today, see these: https://github.com/h4l/sortedcontainers-stubs They work very well for me!

For googlers, here is now a `sortedcontainers-stubs` package on PyPI: https://github.com/h4l/sortedcontainers-stubs

There is now a `sortedcontainers-stubs` package on PyPI: https://github.com/h4l/sortedcontainers-stubs

@brainfo, I think you are using intervaltree 2.x. Since intervaltree 3.0.0 (released in 2018) the MutableSet has been imported like this: https://github.com/chaimleib/intervaltree/blob/328d6db96596a0b7180dd3ad3fae4f6ff7301e01/intervaltree/intervaltree.py ```python try: from collections.abc import MutableSet # Python...

Another pyright user here and +1 on the proposal. I would like it for the first overload (no default argument) as well. I've run into cases where the generic type...

For anyone else finding this who uses cached_property many places, I have gotten around this by defining a private module (e.g. `my_types.py`) with the following code: ```python # ----------------------------------------------------------------------------- #...