LGTM.com - false positive - classmethod() vs. @classmethod
未關閉
false-positive
Python
- 主要語言
- CodeQL
- 星號
- 10.1k
- 分支
- 2.1k
- 平均合併
- 2 天 15 小時
- 30 天內合併 PR
- 141
描述
**Description of the false positive**
LGTM.com appears to detect classes with the `@classmethod` decorator:
```python
@classmethod
def from_filename(cls):
[....]
```
but not classes with the subsequent `classmethod`() call:
```python
def from_filename(cls):
[....]
from_filename = classmethod(from_filename)
```
**URL to the alert on the project page on LGTM.com**
https://lgtm.com/projects/g/nilearn/nilearn/snapshot/0cd925e33787e277990b524efeba0c8125d04816/files/nilearn/externals/tempita/__init__.py?sort=name&dir=ASC&mode=heatmap#x264089f243e25194:1
貢獻指南
評估
這個 Issue 還沒有評估資料。