Maximilian Roos
Maximilian Roos
Some issues on being able to extend s-strings: - https://github.com/prql/prql/issues/919 - https://github.com/prql/prql/issues/376 I think s-strings are a great way of solving for a large number of corner cases, so I...
Another current gap in s-strings is preventing them from being auto-formatted: https://github.com/prql/prql/issues/965. (Issue opened upstream, we can work around it if that doesn't yield anything)
Thanks for the explanation! Can I ask which shell you're using? Oddly I can reproduce in fish every time. Possibly `fish` is escaping `'` characters, whereas bash isn't, and so...
I tried some more and got some surprising results! I get the error _only if it's the first command in a new tab_. If I've already run an `echo 'hello...
OK, thanks again @raphCode It's definitely not exclusively a Zellij issue, but after debugging for a while I can't exactly work it out. So let me leave my latest findings...
I get some errors: ``` ❯ git describe v0.17.0-798-g3599f873 ❯ mypy --python-version 3.8 xarray/core/types.py:72: error: "tuple" is not subscriptable [misc] xarray/core/types.py:74: error: "tuple" is not subscriptable [misc] xarray/core/types.py:76: error: "tuple"...
> Hmmm, these errors should be fixed in the latest version of this PR. Sorry, my test was on main. I can rerun on this PR.
I can't repro the failure on the current PR `v0.17.0-804-g7018b950`. I'm using Python 3.9 with the latest dask. ``` /home/runner/micromamba/envs/xarray-tests/lib/python3.10/site-packages/dask/utils.py:366: error: Parenthesized context managers are only supported in Python 3.9...
> Using a.copy() seems to be the way to go if you want to do a shallow copy of a dict. That is an interesting result (even aside from the...
Is python/mypy#3004 still an issue? pre-commit suggests it's here: https://github.com/pydata/xarray/pull/5667/files#diff-3c0ce7941684cbac55c00ab890684f86acc1de1908ee2afa915dbcb7c944105aR100 — but I guess there's some reason we can't only accept a `MutableMapping` in that function?