You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Why am I getting incompatible argument type mentioning `_StrPromise`?
295
+
296
+
The lazy translation functions of Django (such as `gettext_lazy`) return a `Promise` instead of `str`. These two types [cannot be used interchangeably](https://github.com/typeddjango/django-stubs/pull/1139#issuecomment-1232167698). The return type of these functions was therefore [changed](https://github.com/typeddjango/django-stubs/pull/689) to reflect that.
297
+
298
+
If you encounter this error in your own code, use `StrPromise` or `StrOrPromise` from `django-stubs-ext`.
299
+
300
+
```python
301
+
from django.utils.translation import gettext_lazy as _
302
+
303
+
from django_stubs_ext import StrOrPromise
304
+
305
+
errors: list[StrOrPromise] = []
306
+
errors.add(_('Error message'))
307
+
```
308
+
309
+
If this is reported on Django code, please report an issue or open a pull request.
310
+
294
311
## Related projects
295
312
296
313
-[`awesome-python-typing`](https://github.com/typeddjango/awesome-python-typing) - Awesome list of all typing-related things in Python.
0 commit comments