Merge pull request #3159 from tirkarthi/fix-xml

Use ElementTree instead of deprecated cElementTree.
This commit is contained in:
lissyx 2020-07-15 15:00:18 +02:00 committed by GitHub
commit 75804924f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import sys
import tarfile import tarfile
import unicodedata import unicodedata
import wave import wave
import xml.etree.cElementTree as ET import xml.etree.ElementTree as ET
from collections import Counter from collections import Counter
from glob import glob from glob import glob
from multiprocessing.pool import ThreadPool from multiprocessing.pool import ThreadPool

View File

@ -9,7 +9,7 @@ import os
import tarfile import tarfile
import unicodedata import unicodedata
import wave import wave
import xml.etree.cElementTree as ET import xml.etree.ElementTree as ET
from collections import Counter from collections import Counter
import progressbar import progressbar