Coverage for src/jsoncrack_for_sphinx/schema_finder.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.10.0, created at 2025-07-24 22:26 +0000

1""" 

2Backward compatibility module for jsoncrack_for_sphinx.schema_finder 

3 

4This module provides backward compatibility for old imports. 

5All functionality has been moved to schema.schema_finder. 

6""" 

7 

8# Re-export everything from the new location 

9from .schema.schema_finder import find_schema_for_object 

10 

11__all__ = ["find_schema_for_object"]