support/testing/tests/package/test_python_unittest_xml_reporting.py: fix flake8 warnings

Fixes:

support/testing/tests/package/test_python_unittest_xml_reporting.py:3:1: F401 'time' imported but unused
1     F401 'time' imported but unused
make: *** [Makefile:1220: check-flake8] Error 123

Signed-off-by: Pierre-Jean Texier <texier.pj2@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Pierre-Jean Texier 2021-11-08 20:27:05 +01:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 0df2928afe
commit 7140ebbda5

View File

@ -1,6 +1,5 @@
from tests.package.test_python import TestPythonPackageBase
import os
import time
class TestPythonPy3UnitTestXmlReporting(TestPythonPackageBase):