Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix weird warning #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion bin/kidash
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,16 @@ import sys

from requests import HTTPError

# Quick fix for avoiding weird warnings
# https://github.com/chaoss/grimoirelab-sirmordred/issues/192
import warnings
warnings.filterwarnings("ignore", message="numpy.dtype size changed")
warnings.filterwarnings("ignore", message="numpy.ufunc size changed")

from grimoire_elk.raw.elastic import ElasticOcean
from grimoire_elk.utils import config_logging
from kidash.kidash import import_dashboard, export_dashboard, list_dashboards


def get_params_parser_create_dash():
"""Parse command line arguments"""

Expand Down