Remove STYLESHEET class attribute from docstrings.

This commit is contained in:
Florian Bruhin 2014-08-28 17:46:56 +02:00
parent 0d42eaa152
commit a4c87b4c54
4 changed files with 1 additions and 12 deletions

View File

@ -42,7 +42,6 @@ class CompletionView(QTreeView):
Highlights completions based on marks in the Role.marks data. Highlights completions based on marks in the Role.marks data.
Class attributes: Class attributes:
STYLESHEET: The stylesheet template for the CompletionView.
COLUMN_WIDTHS: A list of column widths, in percent. COLUMN_WIDTHS: A list of column widths, in percent.
Attributes: Attributes:

View File

@ -40,9 +40,6 @@ class StatusBar(QWidget):
"""The statusbar at the bottom of the mainwindow. """The statusbar at the bottom of the mainwindow.
Class attributes:
STYLESHEET: The stylesheet template.
Attributes: Attributes:
cmd: The Command widget in the statusbar. cmd: The Command widget in the statusbar.
txt: The Text widget in the statusbar. txt: The Text widget in the statusbar.

View File

@ -28,11 +28,7 @@ from qutebrowser.config import style
class Progress(QProgressBar): class Progress(QProgressBar):
"""The progress bar part of the status bar. """The progress bar part of the status bar."""
Class attributes:
STYLESHEET: The stylesheet template.
"""
# FIXME for some reason, margin-left is not shown # FIXME for some reason, margin-left is not shown
STYLESHEET = """ STYLESHEET = """

View File

@ -36,9 +36,6 @@ class UrlText(textbase.TextBase):
"""URL displayed in the statusbar. """URL displayed in the statusbar.
Class attributes:
STYLESHEET: The stylesheet template.
Attributes: Attributes:
normal_url: The normal URL to be displayed as a UrlType instance. normal_url: The normal URL to be displayed as a UrlType instance.
normal_url_type: The type of the normal URL as a UrlType instance. normal_url_type: The type of the normal URL as a UrlType instance.