Files
AI-Writie-Assistant/server/venv/lib/python3.9/site-packages/shapely/geometry/conftest.py
T
2026-04-16 10:01:11 +08:00

11 lines
224 B
Python

"""Autouse fixtures for doctests."""
import pytest
from shapely.geometry.linestring import LineString
@pytest.fixture(autouse=True)
def add_linestring(doctest_namespace):
doctest_namespace["LineString"] = LineString