Daniel Oriyan

Results 10 comments of Daniel Oriyan

Thanks for the clarifcation Seth! Do you have perhaps an example of where this logic is counterintuitive? I had a list of paths that looks like `/a/b/1/something`, `/a/b/2/something`, etc, which...

Interesting, it seems the issue lies with using `Path` objects for sorting: ``` >>> from natsort import natsorted, PATH >>> from pathlib import Path >>> x = ["/a/b/1/something", "/a/b/2/something", "/a/b/10/something"]...

Yesterday tqdm stubs were added to typeshed, meaning annotations should now work anywhere that uses typeshed for third party stubs (like mypy). Anywhere else, you should be able to get...

I was disappointed to learn that this doesn't fix typing in PyCharm. While PyCharm does use typeshed, there's an [unrelated bug](https://youtrack.jetbrains.com/issue/PY-55194) that means types with tqdm would virtually never work....

If you're still struggling with this, a workaround would be to create your own 'tqdm' module like this: ```python3 # tqdm.py from tqdm.auto import tqdm as original_tqdm import functools tqdm...

Not sure how my jupyter got into this state, but for me what solved this once and for all was: 1) Stop kernel 2) `jupyter lab build` (in same terminal)...

I forgot to mention this here, but I tried to create a reproducible example with no luck. I might give it another shot later on

Sure, that does sound reasonable. How does such a discussion happen currently? Is it done strictly by the maintainer team, or is it an open discussion in an issue? I'd...

Can't say I'm an expert, but looks good to me! Sorry, I never did get around to it