LGTM.com - false positive "Statement has no effect" for Python await
Đang mở
false-positive
- Ngôn ngữ chính
- CodeQL
- Star
- 10.1k
- Fork
- 2.1k
- Merge trung bình
- 2 ngày 15 giờ
- Pull request đã merge (30 ngày)
- 141
Mô tả
**Description of the false positive**
The `await` expression is used to run coroutines, which by design have side-effects. However, CodeQL erroneously treats a bare `await` expression like any other bare expression and thus assumes it has no side-effects and is used in error. This leads to false-positive flags when `await` is used to trigger a side-effect without a return value.
```python3
def foo():
...
# close a critical resource
await aclose
```
**URL to the alert on the project page on ~~LGTM.com~~ GithHub**
https://github.com/maxfischer2781/asyncstdlib/security/code-scanning/9
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.