The question is in the title.
+1
A:
Suppressing warning message for import / wild import
from django.db import connection #@UnusedImport
from django.db import * #@UnusedWildImport
Vishal
2010-07-16 03:36:09
+1: Just might want to mention that it comes immediately following the import statement to be clear. `from foo import * #@UnusedWildImport`
sdolan
2010-07-16 03:59:21
@sdolan: Thanks, I have updated the answer :)
Vishal
2010-07-16 05:44:07