( self, path )
| 45 | return self.path |
| 46 | |
| 47 | def get_data( self, path ): |
| 48 | with io.FileIO( path, 'r' ) as file: |
| 49 | return file.read() |
| 50 | |
| 51 | class CustomLoader( FileLoader, SourceLoader ): |
| 52 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected