From 299d7d0d80a052145c6dba8e3deae6df4829c417 Mon Sep 17 00:00:00 2001 From: Nathan Tarr <nmtarr@ncsu.edu> Date: Tue, 11 Apr 2023 11:14:30 -0400 Subject: [PATCH] Added import to ignore FutureWarnings --- Query_TEMPLATE.ipynb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Query_TEMPLATE.ipynb b/Query_TEMPLATE.ipynb index 3ea7b3e..2cfa724 100644 --- a/Query_TEMPLATE.ipynb +++ b/Query_TEMPLATE.ipynb @@ -54,6 +54,8 @@ "import numpy as np\n", "import matplotlib.pyplot as plt\n", "from datetime import datetime\n", + "import warnings\n", + "warnings.simplefilter(action='ignore', category=FutureWarning)\n", "sys.path.append(config_path)\n", "if os.path.exists(config_path + \"wranglerconfig.py\") is True:\n", " import wranglerconfig as config\n", -- GitLab