1""" 2Compatibility shim for .resources.readers 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.readers import ( 9 FileReader, ZipReader, MultiplexedPath, NamespaceReader, 10) 11 12__all__ = ['FileReader', 'ZipReader', 'MultiplexedPath', 'NamespaceReader'] 13