Skip to content

Commit f8e5582

Browse files
committed
add FAQ entry regarding StrPromise
1 parent c84e7f0 commit f8e5582

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,23 @@ def foo(obj: object) -> None:
291291
...
292292
```
293293

294+
### 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+
294311
## Related projects
295312

296313
- [`awesome-python-typing`](https://github.com/typeddjango/awesome-python-typing) - Awesome list of all typing-related things in Python.

0 commit comments

Comments
 (0)