Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py

changeset 5625
b75a6da67559
parent 5621
80cce672d505
child 5636
709a306baa81
equal deleted inserted replaced
5624:cdd346d8858b 5625:b75a6da67559
1146 Private method to get the expected future imports. 1146 Private method to get the expected future imports.
1147 1147
1148 @return expected future imports as a comma separated string 1148 @return expected future imports as a comma separated string
1149 @rtype str 1149 @rtype str
1150 """ 1150 """
1151 # TODO: change this to checkable items
1151 selectedFutures = [i.text() for i in self.futuresList.selectedItems()] 1152 selectedFutures = [i.text() for i in self.futuresList.selectedItems()]
1152 return ", ".join(selectedFutures) 1153 return ", ".join(selectedFutures)
1153 1154
1154 def __initBuiltinsIgnoreList(self, builtinsIgnoreDict): 1155 def __initBuiltinsIgnoreList(self, builtinsIgnoreDict):
1155 """ 1156 """

eric ide

mercurial