Merge pull request #3897 from theotherjimmy/supress-levenshtein

Ignore FuzzyWuzzy warnings
pull/3294/merge
Martin Kojtal 2017-03-09 15:33:25 +00:00 committed by GitHub
commit 93b6a21db6
1 changed files with 5 additions and 1 deletions

View File

@ -7,12 +7,16 @@ from threading import Thread
from Queue import Queue
from re import compile, sub
from sys import stderr, stdout
from fuzzywuzzy import process
from itertools import takewhile
import argparse
from json import dump, load
from zipfile import ZipFile
from tempfile import gettempdir
import warnings
warnings.filterwarnings("ignore")
from fuzzywuzzy import process
RootPackURL = "http://www.keil.com/pack/index.idx"