}
for (ICompletionProposalExtension2 comp : completionsToApply) {
int offset = 0; //the offset is not used in this case, because the actual completion does nothing,
//we'll only add the import.
comp.apply(edit.getPySourceViewer(), ' ', 0, offset);
}
return true;
}