19 lines
512 B
Python
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.
|
|
============== ========================================
|
|
|
|
"""
|