diff options
author | Erik Johnston <erik@matrix.org> | 2017-01-27 10:27:39 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-01-27 10:27:39 +0000 |
commit | f25a4a4692d9b4618efb64984c10a6e8243a4a0b (patch) | |
tree | c21e8a0d4f2457ecc1c73ae2db8c49a2eb536797 /synapse/storage/devices.py | |
parent | Fix unit tests (diff) | |
download | synapse-f25a4a4692d9b4618efb64984c10a6e8243a4a0b.tar.xz |
Remove unused param
Diffstat (limited to 'synapse/storage/devices.py')
-rw-r--r-- | synapse/storage/devices.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/storage/devices.py b/synapse/storage/devices.py index 1c48c3af99..b99de2f1b0 100644 --- a/synapse/storage/devices.py +++ b/synapse/storage/devices.py @@ -26,8 +26,7 @@ logger = logging.getLogger(__name__) class DeviceStore(SQLBaseStore): @defer.inlineCallbacks def store_device(self, user_id, device_id, - initial_device_display_name, - ignore_if_known=True): + initial_device_display_name): """Ensure the given device is known; add it to the store if not Args: |