forked from MirrorHub/synapse
Fix PEP8 errors
This commit is contained in:
parent
406f7aa0f6
commit
1c3c202b96
2 changed files with 2 additions and 1 deletions
|
@ -109,7 +109,7 @@ class DeviceHandler(BaseHandler):
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
device = yield self.store.get_device(user_id, device_id)
|
device = yield self.store.get_device(user_id, device_id)
|
||||||
except errors.StoreError, e:
|
except errors.StoreError:
|
||||||
raise errors.NotFoundError
|
raise errors.NotFoundError
|
||||||
ips = yield self.store.get_last_client_ip_by_device(
|
ips = yield self.store.get_last_client_ip_by_device(
|
||||||
devices=((user_id, device_id),)
|
devices=((user_id, device_id),)
|
||||||
|
|
|
@ -22,6 +22,7 @@ from tests import unittest, utils
|
||||||
user1 = "@boris:aaa"
|
user1 = "@boris:aaa"
|
||||||
user2 = "@theresa:bbb"
|
user2 = "@theresa:bbb"
|
||||||
|
|
||||||
|
|
||||||
class DeviceTestCase(unittest.TestCase):
|
class DeviceTestCase(unittest.TestCase):
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super(DeviceTestCase, self).__init__(*args, **kwargs)
|
super(DeviceTestCase, self).__init__(*args, **kwargs)
|
||||||
|
|
Loading…
Reference in a new issue