This file is indexed.

/usr/lib/python3/dist-packages/glue/managers/simple.py is in glue-sprite 0.11.1-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from .base import BaseManager


class SimpleManager(BaseManager):
    """Process a single folder and create one sprite. It works the
    same way as :class:`~ProjectSpriteManager`, but only for one folder.

    This is the default manager.
    """

    def find_sprites(self):
        self.add_sprite(path=self.config['source'])