Skip to content

Commit 50206ef

Browse files
Merge pull request #3280 from nexB/silence-pyicu-warning
Silence pyicu warning
2 parents 8a2c50f + 456665b commit 50206ef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/summarycode/summarizer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#
99

1010
from collections import defaultdict
11+
import warnings
1112

1213
import attr
1314
import fingerprints
@@ -28,6 +29,7 @@
2829
TRACE = False
2930
TRACE_LIGHT = False
3031

32+
warnings.simplefilter('ignore', UnicodeWarning)
3133

3234
def logger_debug(*args):
3335
pass

0 commit comments

Comments
 (0)