summaryrefslogtreecommitdiff
path: root/horizon/browsers
diff options
context:
space:
mode:
authorAkihiro Motoki <amotoki@gmail.com>2017-06-09 16:02:30 +0000
committerAkihiro Motoki <amotoki@gmail.com>2017-06-09 16:04:57 +0000
commit95629a337e8aa19fb283cf11a701bd8025b88346 (patch)
treef43402f6d2021918bf8621fc245b6c377e2b2e60 /horizon/browsers
parent8ecb9c141b9a4810d34da671327fe5590b0f86d1 (diff)
downloadhorizon-95629a337e8aa19fb283cf11a701bd8025b88346.tar.gz
Fix H405 (multi line docstring) warnings (horizon)
H405: multi line docstring summary not separated with an empty line Partial-Bug: #1696996 Change-Id: I58f71206def1a25f3eda04b9297f1aa7d3caa646
Diffstat (limited to 'horizon/browsers')
-rw-r--r--horizon/browsers/base.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/horizon/browsers/base.py b/horizon/browsers/base.py
index 2aea8fb8b..5a28c6797 100644
--- a/horizon/browsers/base.py
+++ b/horizon/browsers/base.py
@@ -119,8 +119,11 @@ class ResourceBrowser(html.HTMLElement):
% (attr_name, self.__class__.__name__))
def set_tables(self, tables):
- """Sets the table instances on the browser from a dictionary mapping
- table names to table instances (as constructed by MultiTableView).
+ """Sets the table instances on the browser.
+
+ ``tables`` argument specifies tables to be set.
+ It is a dictionary mapping table names to table instances
+ (as constructed by MultiTableView).
"""
self.navigation_table = tables[self.navigation_table_class._meta.name]
self.content_table = tables[self.content_table_class._meta.name]