This file is indexed.

/usr/lib/python3/dist-packages/glue/formats/scss.py is in glue-sprite 0.13-2.

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
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os

from .css import CssFormat


class ScssFormat(CssFormat):

    extension = 'scss'

    @classmethod
    def populate_argument_parser(cls, parser):
        group = parser.add_argument_group("SCSS format options")

        group.add_argument("--scss",
                           dest="scss_dir",
                           nargs='?',
                           const=True,
                           default=os.environ.get('GLUE_SCSS', False),
                           metavar='DIR',
                           help="Generate SCSS files and optionally where")

        group.add_argument("--scss-template",
                           dest="scss_template",
                           default=os.environ.get('GLUE_SCSS_TEMPLATE', None),
                           metavar='DIR',
                           help="Template to use to generate the SCSS output.")