Go to the User Settings json file and add the following:
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": [
"--enable=W0614"
]
This should remove the unused python imports automatically.
More suggestions here:
How can I check for unused import in many Python files?