2017-08-18 38 views
1

今天啓動了Sublime Text 3,並注意到Flake8Lint未處於活動狀態。我檢查了控制檯,有這個長的錯誤:Flake8Lint錯誤:AttributeError:'NoneType'對象沒有屬性'kind'

 
Flake8Lint ERROR: Traceback (most recent call last): 
Flake8Lint ERROR: File "/Users/juliansmithdeniro/Library/Application Support/Sublime Text 3/Packages/Python Flake8 Lint/lint.py", line 405, in 
Flake8Lint ERROR: for lint_warning in lint(stdin_lines, lint_settings): 
Flake8Lint ERROR: File "/Users/juliansmithdeniro/Library/Application Support/Sublime Text 3/Packages/Python Flake8 Lint/lint.py", line 206, in lint 
Flake8Lint ERROR: for error in PEP257Checker().check_source(lines, ''): 
Flake8Lint ERROR: File "/Users/juliansmithdeniro/Library/Application Support/Sublime Text 3/Packages/Python Flake8 Lint/contrib/pydocstyle.py", line 1359, in check_source 
Flake8Lint ERROR: module = parse(StringIO(source), filename) 
Flake8Lint ERROR: File "/Users/juliansmithdeniro/Library/Application Support/Sublime Text 3/Packages/Python Flake8 Lint/contrib/pydocstyle.py", line 275, in __call__ 
Flake8Lint ERROR: return self.parse_module() 
Flake8Lint ERROR: File "/Users/juliansmithdeniro/Library/Application Support/Sublime Text 3/Packages/Python Flake8 Lint/contrib/pydocstyle.py", line 428, in parse_module 
Flake8Lint ERROR: children = list(self.parse_definitions(Module, all=True)) 
Flake8Lint ERROR: File "/Users/juliansmithdeniro/Library/Application Support/Sublime Text 3/Packages/Python Flake8 Lint/contrib/pydocstyle.py", line 366, in parse_definitions 
Flake8Lint ERROR: yield self.parse_definition(class_._nest(self.current.value)) 
Flake8Lint ERROR: File "/Users/juliansmithdeniro/Library/Application Support/Sublime Text 3/Packages/Python Flake8 Lint/contrib/pydocstyle.py", line 485, in parse_definition 
Flake8Lint ERROR: class_.__name__, name, self.current.kind, 
Flake8Lint ERROR: AttributeError: 'NoneType' object has no attribute 'kind' 

我嘗試禁用和重新啓用,然後卸載並重新安裝。如果任何人有一些知識,他們可以傳遞將不勝感激!

回答

相關問題