2026-02-01 09:31:38 +01:00

19 lines
512 B
Python

"""Provide the Stylesheet class."""
from .base import PRAWBase
class Stylesheet(PRAWBase):
"""Represent a stylesheet.
.. include:: ../../typical_attributes.rst
============== ========================================
Attribute Description
============== ========================================
``images`` A list of images used by the stylesheet.
``stylesheet`` The contents of the stylesheet, as CSS.
============== ========================================
"""