scripts: Fix the flake8 syntax-check failures

Fix the syntax-check failures (which can be seen after
python3-flake8-import-order package is installed) with the help
of isort[1]:

289/316 libvirt:syntax-check / flake8   FAIL   5.24s   exit status 2

[1]: https://pycqa.github.io/isort/

Signed-off-by: Han Han <hhan@redhat.com>
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Han Han
2023-06-05 15:40:13 +08:00
committed by Michal Privoznik
parent d7fb8deb6a
commit 28141adfdc
15 changed files with 26 additions and 27 deletions

View File

@@ -16,10 +16,10 @@
#
# Check that external references between documentation HTML files are not broken.
import sys
import os
import argparse
import os
import re
import sys
import xml.etree.ElementTree as ET
ns = {'html': 'http://www.w3.org/1999/xhtml'}