Kye W. Shi
Kye W. Shi
Having this issue as well. As a side note, when is `[]` square brackets used for glob patterns, anyway? Is there even a reason for SC2125 to flag square brackets,...
Interesting how nobody has taken this on yet! I am quite interested in having this and have some basic experience working w/ lexers/parsers for other things, so maybe I'll try...
My two cents: 1. I like the `quote()` approach the most (speaking of which, it can/should also be applicable to plain string arguments). - I don't think quoting-by-default/requiring opt-out of...
> I couldn't figure out a solution leveraging svelte's reactivity to update `scrollTop`/`scrollLeft`. If someone finds a better solution I'd love to know too. What about ```svelte let elem; let...
I tentatively suggest a `@@` operator, a la Python's `*` for lists vs `**` for maps. It feels more consistent/easy to remember than `%`, IMO.
A more realistic use-case: I load a CSV from some online API, and I want to convert it into JSON. The API's CSV output always has a header row, which...
#74 is an example of an error that might've been mitigated/avoided with explicit type hints & a typechecker such as mypy/pyright.
on a related note, it might also be nice to use a type-checking/validation library such as `pydantic` to validate JSON responses from the Piazza API. this would have the benefit...
just ran into this issue. seems like the current code for updating posts is outdated. for reference, here's an example payload submitted in the browser (found via network inspector tool...
#71 doesn't/shouldn't fix this issue, since changing f-strings to `str.format` is merely a Python syntax difference (with better backwards-compatibility for old Python versions) that doesn't change the actual functionality/submission at...