python: remove unused imports

They are flagged by lgtm.com. Avoid the warning by dropping unused
includes.
This commit is contained in:
Thomas Haller
2021-05-27 08:52:30 +02:00
parent f1a1921edc
commit 26f0fb0604
3 changed files with 5 additions and 4 deletions

View File

@@ -3,9 +3,8 @@
from __future__ import print_function
import os
import sys
import collections
import sys
import xml.etree.ElementTree as ET
###############################################################################