373 project = ericApp().getObject("Project") |
373 project = ericApp().getObject("Project") |
374 project.saveAllScripts() |
374 project.saveAllScripts() |
375 ppath = project.getProjectPath() |
375 ppath = project.getProjectPath() |
376 files = [ |
376 files = [ |
377 os.path.join(ppath, file) |
377 os.path.join(ppath, file) |
378 for file in project.pdata["SOURCES"] |
378 for file in project.getProjectData(dataKey="SOURCES") |
379 if file.endswith(tuple(Preferences.getPython("Python3Extensions"))) |
379 if file.endswith(tuple(Preferences.getPython("Python3Extensions"))) |
380 ] |
380 ] |
381 |
381 |
382 self.__projectCodeStyleCheckerDialog = ( |
382 self.__projectCodeStyleCheckerDialog = ( |
383 CodeStyleCheckerDialog.CodeStyleCheckerDialog(self) |
383 CodeStyleCheckerDialog.CodeStyleCheckerDialog(self) |