diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-07-19 10:21:42 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-07-19 18:56:16 +0100 |
commit | 3413f1e284593aa63723cdcd52f443d63771ef62 (patch) | |
tree | 62dbed96c3dbb0132833160d4f267d941c350e06 /synapse/handlers/_base.py | |
parent | Merge pull request #931 from matrix-org/rav/refactor_register (diff) | |
download | synapse-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/handlers/_base.py')
-rw-r--r-- | synapse/handlers/_base.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py index d00685c389..6264aa0d9a 100644 --- a/synapse/handlers/_base.py +++ b/synapse/handlers/_base.py @@ -36,6 +36,10 @@ class BaseHandler(object): """ def __init__(self, hs): + """ + Args: + hs (synapse.server.HomeServer): + """ self.store = hs.get_datastore() self.auth = hs.get_auth() self.notifier = hs.get_notifier() |