Skip to content

Commit

Permalink
Remove warnings.simplefilter (#1053)
Browse files Browse the repository at this point in the history
* Update feature_set_calculator.py

* Update changelog.rst
  • Loading branch information
gsheni committed Jul 7, 2020
1 parent 123fe85 commit 44d4009
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Expand Up @@ -5,6 +5,7 @@ Changelog
**Future Release**
* Enhancements
* Fixes
* Remove warnings.simplefilter in feature_set_calculator to un-silence warnings (:pr:`1053`)
* Changes
* Change default branch to ``main`` (:pr:`1038`)
* Documentation Changes
Expand Down
4 changes: 0 additions & 4 deletions featuretools/computational_backends/feature_set_calculator.py
@@ -1,4 +1,3 @@
import warnings
from datetime import datetime
from functools import partial

Expand All @@ -20,9 +19,6 @@
from featuretools.utils import Trie
from featuretools.utils.gen_utils import get_relationship_variable_id

warnings.simplefilter('ignore', np.RankWarning)
warnings.simplefilter("ignore", category=RuntimeWarning)


class FeatureSetCalculator(object):
"""
Expand Down

0 comments on commit 44d4009

Please sign in to comment.