如何在多行代码中忽略flake8?

2024-04-29 18:50:12 发布

您现在位置:Python中文网/ 问答频道 /正文

对于flake8,要禁用某行上的某个错误,请执行以下操作:

example = lambda: 'example'  # noqa: E731,E123

但是,如果我有多行a语句,flake8无法在末尾解析noqa语句:

^{pr2}$

我想用'\'来继续,所以我不想这样做(这确实有效)

from detect_fixtures import (expected_response_stage3_mocked,  # noqa: F401                      
    expected_response_bbox_oob, img, mock_detection, mock_detection_models,  # noqa: F401        
    mock_detection_stage1, mock_detection_stage2, mock_detection_stage3_given_bbox,  # noqa: F401
    mock_load_image)  # noqa: F401          

有什么帮助吗?在


Tags: lambdaflake8exampleresponse错误语句mockexpected
1条回答
网友
1楼 · 发布于 2024-04-29 18:50:12
from detect_fixtures import (expected_response_stage3_mocked,  # noqa: F401                      
    expected_response_bbox_oob, img, mock_detection, mock_detection_models,  
    mock_detection_stage1, mock_detection_stage2, mock_detection_stage3_given_bbox,
    mock_load_image)

你只需要一个noqa。Flake8将连续线视为一条。在

相关问题 更多 >