在Toolbox新增一個Command
Command填即可
%(python) %F
可以在Key Binding裡設定你要的快捷鍵
pyflakes 是用來檢查Python程式語法用的, 可以提示未命名的變數或是沒用到(unused)的變數
passive checker of Python programs
Pyflakes is program to analyze Python programs and detect various errors. It works by parsing the source file, not importing it, so it is safe to use on modules with side effects. It's also much faster.
檢查結果如圖所示