Files
Touchh/.venv/lib/python3.10/site-packages/pandas/tests/io/json/conftest.py
2024-12-06 10:45:08 +09:00

10 lines
205 B
Python

import pytest
@pytest.fixture(params=["split", "records", "index", "columns", "values"])
def orient(request):
"""
Fixture for orients excluding the table format.
"""
return request.param