File: sassc.py

package info (click to toggle)
libsass-python 0.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 492 kB
  • sloc: python: 3,080; cpp: 622; makefile: 175
file content (15 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import warnings

import pysassc


def main(*args, **kwargs):
    warnings.warn(
        'The `sassc` entrypoint is deprecated, please use `pysassc`',
        FutureWarning,
    ),
    return pysassc.main(*args, **kwargs)


if __name__ == '__main__':
    exit(main())