Skip to content

Commit

Permalink
suppressed fuzzwuzzy slowness warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jagoosw committed Apr 30, 2021
1 parent 27093a3 commit 28513a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions getgfs/getgfs.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
"""getgfs - a library for extracting weather forecast variables from the NOAA GFS forecast in a pure python, no obscure dependencies way
"""
import requests, json, os, re, dateutil.parser, sys
import requests, json, os, re, dateutil.parser, sys, warnings
from datetime import datetime, timedelta
import numpy as np
from scipy.interpolate import interp1d
from .decode import *

try:
from fuzzywuzzy import fuzz
with warnings.catch_warnings():
warnings.simplefilter("ignore")
from fuzzywuzzy import fuzz
except:
pass

Expand Down

0 comments on commit 28513a2

Please sign in to comment.