ai-content-maker/.venv/Lib/site-packages/pandas/tests/interchange/conftest.py

13 lines
227 B
Python
Raw Permalink Normal View History

2024-05-03 04:18:51 +03:00
import pytest
import pandas as pd
@pytest.fixture
def df_from_dict():
def maker(dct, is_categorical=False):
df = pd.DataFrame(dct)
return df.astype("category") if is_categorical else df
return maker