Skip to content

Commit f306ffa

Browse files
committed
Ignore FuzzyWuzzy warnings
Nobody actually cares.
1 parent 3a27568 commit f306ffa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/arm_pack_manager/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@
77
from Queue import Queue
88
from re import compile, sub
99
from sys import stderr, stdout
10-
from fuzzywuzzy import process
1110
from itertools import takewhile
1211
import argparse
1312
from json import dump, load
1413
from zipfile import ZipFile
1514
from tempfile import gettempdir
15+
import warnings
16+
17+
warnings.filterwarnings("ignore")
18+
19+
from fuzzywuzzy import process
1620

1721
RootPackURL = "http://www.keil.com/pack/index.idx"
1822

0 commit comments

Comments
 (0)