Use ElementTree instead of deprecated cElementTree.
This commit is contained in:
parent
bb7a0457a3
commit
0f27c802d9
|
@ -14,7 +14,7 @@ import sys
|
|||
import tarfile
|
||||
import unicodedata
|
||||
import wave
|
||||
import xml.etree.cElementTree as ET
|
||||
import xml.etree.ElementTree as ET
|
||||
from collections import Counter
|
||||
from glob import glob
|
||||
from multiprocessing.pool import ThreadPool
|
||||
|
|
|
@ -9,7 +9,7 @@ import os
|
|||
import tarfile
|
||||
import unicodedata
|
||||
import wave
|
||||
import xml.etree.cElementTree as ET
|
||||
import xml.etree.ElementTree as ET
|
||||
from collections import Counter
|
||||
|
||||
import progressbar
|
||||
|
|
Loading…
Reference in New Issue