@@ -73,6 +73,8 @@ def compile(**kwargs):
7373 :type include_paths: :class:`collections.Sequence`, :class:`str`
7474 :param image_path: an optional path to find images
7575 :type image_path: :class:`str`
76+ :param precision: optional precision for numbers. :const:`5` by default.
77+ :type precision: :class:`int`
7678 :returns: the compiled CSS string
7779 :rtype: :class:`str`
7880 :raises sass.CompileError: when it fails for any reason
@@ -102,6 +104,8 @@ def compile(**kwargs):
102104 :type include_paths: :class:`collections.Sequence`, :class:`str`
103105 :param image_path: an optional path to find images
104106 :type image_path: :class:`str`
107+ :param precision: optional precision for numbers. :const:`5` by default.
108+ :type precision: :class:`int`
105109 :returns: the compiled CSS string, or a pair of the compiled CSS string
106110 and the source map string if ``source_comments='map'``
107111 :rtype: :class:`str`, :class:`tuple`
@@ -134,6 +138,8 @@ def compile(**kwargs):
134138 :type include_paths: :class:`collections.Sequence`, :class:`str`
135139 :param image_path: an optional path to find images
136140 :type image_path: :class:`str`
141+ :param precision: optional precision for numbers. :const:`5` by default.
142+ :type precision: :class:`int`
137143 :raises sass.CompileError: when it fails for any reason
138144 (for example the given SASS has broken syntax)
139145
0 commit comments