Akuli

Results 347 comments of Akuli
trafficstars

The problem is that `porcu` might point at a different installation of Porcupine.

We have 3 options: 1. No stub. Users will get errors. Shows up with red squiggles in editors. 2. Stub with `@deprecated`. Shows up as ~~overlined~~ in editors. Users will...

I'm not a big fan of deleting `requirements-tests.txt`. The fact is that it works, and it is by far the simplest solution: to understand it, you only need to know...

I like the `_KT | None` idea, and IMO it is much better than using `object`. If you do `dict.get(totally_wrong_type, "fallback")`, that really should be an error. That is kinda...

I ran into this today. My code is basically this: ```python3 messages: dict[str, str] = {"foo": "bar"} def get_message(key: str | None) -> str | None: return messages.get(key) print(get_message("foo")) #...