mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #3897 from theotherjimmy/supress-levenshtein
Ignore FuzzyWuzzy warningspull/3294/merge
commit
93b6a21db6
|
@ -7,12 +7,16 @@ from threading import Thread
|
||||||
from Queue import Queue
|
from Queue import Queue
|
||||||
from re import compile, sub
|
from re import compile, sub
|
||||||
from sys import stderr, stdout
|
from sys import stderr, stdout
|
||||||
from fuzzywuzzy import process
|
|
||||||
from itertools import takewhile
|
from itertools import takewhile
|
||||||
import argparse
|
import argparse
|
||||||
from json import dump, load
|
from json import dump, load
|
||||||
from zipfile import ZipFile
|
from zipfile import ZipFile
|
||||||
from tempfile import gettempdir
|
from tempfile import gettempdir
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
warnings.filterwarnings("ignore")
|
||||||
|
|
||||||
|
from fuzzywuzzy import process
|
||||||
|
|
||||||
RootPackURL = "http://www.keil.com/pack/index.idx"
|
RootPackURL = "http://www.keil.com/pack/index.idx"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue