reflex/tests/benchmarks/conftest.py
2025-02-05 17:44:40 +01:00

10 lines
205 B
Python

import warnings
from .fixtures import complicated_page
warnings.filterwarnings(
"ignore", message="fields may not start with an underscore", category=RuntimeWarning
)
__all__ = ["complicated_page"]