标签: python-3.x pylint
我在ubuntu 14.04上运行pylint 1.1.0-1
我的代码通过python 3.4传递所有检查并运行良好。
但是用pylint检查它会调用以下行的语法错误:
if not (os.path.exists(d1)and os.path.exists(d2)): return print('\npaths not found\n')
为什么?!
因为pylint发现错误,所以它没有继续提供报告和统计数据。