Feuermurmel

Results 60 comments of Feuermurmel

@davidhalter I think `ValuesQuerySet` has been added to `django_stubs_ext` (separate package on PyPI) doing exactly what you proposed: https://github.com/typeddjango/django-stubs/blob/0a006f2dda989679b3d09fc876677bd90e1e5cb4/ext/django_stubs_ext/aliases.py#L9 So maybe this issue is obsolete? Maybe `ValuesQuerySet` could be made...

> What are your thoughts here. This should be fixed in python-logfmter, I assume? I'd say so. Also because, for example, these two values produce the same output now: ```python...

> Interesting, are you saying that this `{...} | line_format "foo=\"a\\nb\"" | logfmt` also doesn't work? I think I'm mistaken here. It seems that a `\n` embedded in a field...

> I am surprised that grafana's logfmt parser works just by espacing the outer quotes as seen here: `foo=\"a\nb\"`. Oh, or did you mean that the Logfmt parser parses the...

Ah, I see. So `@not` can be used for the same as TypeScript's [`Exclude`](https://www.typescriptlang.org/docs/handbook/utility-types.html#excludeuniontype-excludedmembers). Somehow it's behaving a bit strange. It works in the example you have, with a separate...

Hey, it took a bit of time to come back to this and answer your questions. After opening the few issues on this project, I quickly decided to drop it...

On a personal note, the way this plugin treats `any` and `void` is the reason I abandoned this project in the end. It just gave me the feeling that these...

> Looks like this does need Black run over it, too. I'm a bit confused. If I run `black` and `isort`, I get a lot of changes on files I...

> The CI only runs black/isort on files within the `monkeytype/` directory (see e.g. the `tox.ini` or `.github/workflows/test.yml`), so you should do the same. Ah, thanks for the hint. It...

> Could you just make a helper function that calls the additional statement and returns the attribute then replace all accesses of the attribute with this new helper function? I...