diff --git a/qutebrowser/widgets/completion.py b/qutebrowser/widgets/completion.py index 04f7b5d34..6dcfd5a4c 100644 --- a/qutebrowser/widgets/completion.py +++ b/qutebrowser/widgets/completion.py @@ -42,7 +42,6 @@ class CompletionView(QTreeView): Highlights completions based on marks in the Role.marks data. Class attributes: - STYLESHEET: The stylesheet template for the CompletionView. COLUMN_WIDTHS: A list of column widths, in percent. Attributes: diff --git a/qutebrowser/widgets/statusbar/bar.py b/qutebrowser/widgets/statusbar/bar.py index eb27f5e5f..ca7aa4abf 100644 --- a/qutebrowser/widgets/statusbar/bar.py +++ b/qutebrowser/widgets/statusbar/bar.py @@ -40,9 +40,6 @@ class StatusBar(QWidget): """The statusbar at the bottom of the mainwindow. - Class attributes: - STYLESHEET: The stylesheet template. - Attributes: cmd: The Command widget in the statusbar. txt: The Text widget in the statusbar. diff --git a/qutebrowser/widgets/statusbar/progress.py b/qutebrowser/widgets/statusbar/progress.py index d7223f733..778258f47 100644 --- a/qutebrowser/widgets/statusbar/progress.py +++ b/qutebrowser/widgets/statusbar/progress.py @@ -28,11 +28,7 @@ from qutebrowser.config import style class Progress(QProgressBar): - """The progress bar part of the status bar. - - Class attributes: - STYLESHEET: The stylesheet template. - """ + """The progress bar part of the status bar.""" # FIXME for some reason, margin-left is not shown STYLESHEET = """ diff --git a/qutebrowser/widgets/statusbar/url.py b/qutebrowser/widgets/statusbar/url.py index 5366eafe1..a7782d0bf 100644 --- a/qutebrowser/widgets/statusbar/url.py +++ b/qutebrowser/widgets/statusbar/url.py @@ -36,9 +36,6 @@ class UrlText(textbase.TextBase): """URL displayed in the statusbar. - Class attributes: - STYLESHEET: The stylesheet template. - Attributes: 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.