if (alreadyFound.contains(found)) {
continue;
}
alreadyFound.add(found);
PyConsoleCompletion proposal = new PyConsoleCompletion(importRep, requestOffset - qlen, qlen,
realImportRep.length(), img, found, (IContextInformation) null, "",
lowerImportRep.equals(lowerQual) ? IPyCompletionProposal.PRIORITY_LOCALS_2
: IPyCompletionProposal.PRIORITY_PACKAGES, realImportRep.toString(), viewer);
completions.add(proposal);