flake8 type annotations:Flake8插件强制执行一致的类型注释样式 源码
flake8类型注释 验证类型注释语法,该语法由。 已弃用,在flake8 >=3.7之后不再需要。 E252它是通过E225和E252违规检查处理的。 安装 pip install flake8-type-annotations 代码示例 # Consistency with this plugin: def function ( param = 0 , other : int = 0 ) -> int : return param + other # Possible errors without this plugin: def function ( param = 0 ,
用户评论