From bff2a9ab62787a823675d7d6c654bea3101c9cba Mon Sep 17 00:00:00 2001 From: "s.steuer" Date: Fri, 2 Feb 2024 09:56:20 +0100 Subject: [PATCH] =?UTF-8?q?Auf=20Rechnern,=20die=20Netzwerk-Interpreter=20?= =?UTF-8?q?auf=20U:=20nutzen=20kam=20bei=20jedem=20Ausf=C3=BChren=20von=20?= =?UTF-8?q?compare=5Flists=20ein=20Deprecation=20Warning=20f=C3=BCr=20eine?= =?UTF-8?q?=20Pandas-Dependency.=20Deprecation=20Warnings=20werden=20nun?= =?UTF-8?q?=20ignoriert=20und=20nicht=20mehr=20ausgegeben?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/compare_lists.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/compare_lists.py b/lib/compare_lists.py index dad866d..aa9f62d 100644 --- a/lib/compare_lists.py +++ b/lib/compare_lists.py @@ -1,5 +1,8 @@ import update_database +import warnings +#Wegen Pandas Deprecation eingebaut +warnings.filterwarnings("ignore", category=DeprecationWarning) import argparse import os import json