scripts: ch-trace-visualiser.py: remove unused import 'xml'

Unused import 'xml' is redefined at:

> xml = ET.ElementTree(element=svg)

Hence, remove unused xml import.

Signed-off-by: Ruslan Mstoi <ruslan.mstoi@intel.com>
This commit is contained in:
Ruslan Mstoi 2023-02-17 15:48:04 +02:00 committed by Bo Chen
parent 595c9d13a9
commit bd1e1677bd

View File

@ -7,7 +7,6 @@
from colorsys import hsv_to_rgb from colorsys import hsv_to_rgb
from random import random from random import random
import xml
import json import json
from sys import argv, stderr from sys import argv, stderr
import xml.etree.ElementTree as ET import xml.etree.ElementTree as ET