tags:

views:

89

answers:

1

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
+1: Just might want to mention that it comes immediately following the import statement to be clear. `from foo import * #@UnusedWildImport`
sdolan
@sdolan: Thanks, I have updated the answer :)
Vishal