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 """ |