1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-06-25 19:49:54 +02:00

🧹 Filter annoying UserWarning on every pandas import (on WSL)

This commit is contained in:
Mike Gerber 2025-06-11 17:20:28 +02:00
parent 5384e18ab5
commit a20c979351
4 changed files with 25 additions and 4 deletions

View file

@ -15,12 +15,17 @@ from typing import List
from collections.abc import MutableMapping, Sequence
import click
import pandas as pd
import numpy as np
from tqdm import tqdm
from .lib import TagGroup, convert_db_to_parquet, sorted_groupby, flatten, ns, insert_into_db
with warnings.catch_warnings():
# Filter warnings on WSL
if "Microsoft" in os.uname().release:
warnings.simplefilter("ignore")
import pandas as pd
logger = logging.getLogger('alto4pandas')