Use ElementTree instead of deprecated cElementTree.

This commit is contained in:
Karthikeyan Singaravelan 2020-07-15 12:46:00 +00:00
parent bb7a0457a3
commit 0f27c802d9
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