1""" 2Compatibility shim for .resources.simple as found on Python 3.10. 3 4Consumers that can rely on Python 3.11 should use the other 5module directly. 6""" 7 8from .resources.simple import ( 9 SimpleReader, ResourceHandle, ResourceContainer, TraversableReader, 10) 11 12__all__ = [ 13 'SimpleReader', 'ResourceHandle', 'ResourceContainer', 'TraversableReader', 14] 15