summary refs log tree commit diff
path: root/synapse/rest/client/v1/base.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-07-19 10:21:42 +0100
committerRichard van der Hoff <richard@matrix.org>2016-07-19 18:56:16 +0100
commit3413f1e284593aa63723cdcd52f443d63771ef62 (patch)
tree62dbed96c3dbb0132833160d4f267d941c350e06 /synapse/rest/client/v1/base.py
parentMerge pull request #931 from matrix-org/rav/refactor_register (diff)
downloadsynapse-3413f1e284593aa63723cdcd52f443d63771ef62.tar.xz
Type annotations
Add some type annotations to help PyCharm (in particular) to figure out the
types of a bunch of things.
Diffstat (limited to 'synapse/rest/client/v1/base.py')
-rw-r--r--synapse/rest/client/v1/base.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/rest/client/v1/base.py b/synapse/rest/client/v1/base.py
index 1c020b7e2c..96b49b01f2 100644
--- a/synapse/rest/client/v1/base.py
+++ b/synapse/rest/client/v1/base.py
@@ -52,6 +52,10 @@ class ClientV1RestServlet(RestServlet):
     """
 
     def __init__(self, hs):
+        """
+        Args:
+            hs (synapse.server.HomeServer):
+        """
         self.hs = hs
         self.handlers = hs.get_handlers()
         self.builder_factory = hs.get_event_builder_factory()