Sondre Lillebø Gundersen
Sondre Lillebø Gundersen
Thanks for the quick responses. I'll open an issue in the Pycharm bug tracker when I get a chance and link to it here. Would it make sense to keep...
I added a comment to https://youtrack.jetbrains.com/issue/PY-47532/Suuport-new-attrs-aliases, since this ticket seems to be pretty closely related 👍
Looks like https://github.com/tiangolo/full-stack-fastapi-postgresql/tree/master/%7B%7Bcookiecutter.project_slug%7D%7D/backend might also need an update. Let me know if you'd like me to open a PR.
In case anyone (like me) stumbles onto this thread without knowing even the basics of linux; this is how I ended up implementing @roirodriguez's fix in my Dockerfile: ```shell RUN...
I think for our case, it's fair to say that a condition is intentionally inlined if the `{%` tag _doesn't_ start on column index 0, where the column index 0...
Yeah the regex would certainly fix it in that sense. Maybe matching on any alphanumeric previous character, not counting whitespace would be more robust, to also handle examples like `0...
The `values_list` changes look good, but can you explain why it makes sense to replace `set` with `add`? I'm not that familiar with this code, so just want to know...
Could you please explain how ```python list(existing_groups.iterator()) + new_groups ``` is more performant than this? ```python existing_groups + new_groups ``` I'm sure it could be, but to me it just...
Ah yeah I see 👍 That being said, I'm not sure the `iterator()` call is worth keeping. Doing a little testing, it seems like the `list` call is all that's...
Hmm this is a tough one. I doubt there are many projects that rely on signals based off of these events. At the same time, if there are, the outcome...