Dave Tapley
Dave Tapley
Just throwing it out there: If the new [Python Install Script](https://github.com/microsoft/vscode-dev-containers/blob/10b147c6fe0997dfa685d2be6d9ae44248411eeb/script-library/docs/python.md) could check for a `.python-version`, then it might provide this functionality? ... alternatively that script could be updated to...
@Chuxel would you accept a PR to omit the `userpart` similar to how `codespaces-theme.hide-status` can be used to hide `gitbranch`? https://github.com/microsoft/vscode-dev-containers/blob/d2d7419316156d2cb78e2b77dc194af2adc9fdd6/container-templates/docker-compose/.devcontainer/library-scripts/common-debian.sh#L303-L307 --- As an aside: I'm not actually sure what...
@GreyCat I also get: ``` ng/lib/alert1.py:5:1: F401 'kaitaistruct.KaitaiStream' imported but unused ng/lib/alert1.py:5:1: F401 'kaitaistruct.BytesIO' imported but unused ``` ---- My 2c: 1. PEP8's purpose is to make code more readable,...
@yukinarit do you need/want any help on this? I'll need to implement a workaround soon as I have to ship something, but I'd rather make a PR here if you...
@asciimike @jurre @brrygrdn I see ⬇️ still in readme since Dec 2020, but any clue as to when you'll open up again? 🙏🏻 https://github.com/dependabot/dependabot-core/blob/6fe80ea7b6261c06ef8eb3007de2e60acba05ab8/README.md?plain=1#L20
Closing for reasons on: https://github.com/falconry/falcon/pull/2209#issuecomment-1922220895
@CaselIT I agree! See https://github.com/falconry/falcon/discussions/2210 😁
Just to throw it out there: I think a [Protocol](https://peps.python.org/pep-0544/) would be a great fit for `resource` in : https://github.com/falconry/falcon/blob/4910dd73ecd1b9c8cf6cae045b26ad432fa56128/falcon/routing/compiled.py#L150 Something like: ```py from typing import Protocol from falcon.request import...
> once the `add_route` call happens the class is already defined. True, but in the current implementation if that class had say: ```py class MyResource: def on_get(self, req: str, bad:...
I have a test repro, and I'm happy to do a PR to fix, but could do with a pointer where in code to look 😁