dry-python / dry-python/lambdas
Bug in the docs
Open
- Dominant language
- Python
- Stars
- 286
- Forks
- 6
- PR merge metrics
- No merged PRs in 30d
Description
```python
>>> complex_math_expression = 50 / (_ ** 2) * 2
>>> print(complex_math_expression(5))
100.0
```
But:
```python
>>> 50 / (5 ** 2) * 2
4.0
```
Not good :)
Contributor guide
Assessment
This issue has not been assessed yet.