fix some unrelated flake8 errors

This commit is contained in:
Amber Brown (HawkOwl) 2016-11-16 00:04:19 +11:00
parent 388328391e
commit 051edd0f0a
No known key found for this signature in database
GPG Key ID: 2308B479D3924A11
2 changed files with 2 additions and 0 deletions

View File

@ -205,6 +205,7 @@ class RawSocketProtocol(PrefixProtocol):
if data:
PrefixProtocol.data_received(self, data)
ERR_SERIALIZER_UNSUPPORTED = 1
ERRMAP = {

View File

@ -215,6 +215,7 @@ class Test(TestCase):
self.assertTrue(server.onMessage.called)
self.assertTrue(isinstance(server.onMessage.call_args[0][0], message.Abort))
if __name__ == "__main__":
# import sys;sys.argv = ['', 'Test.test_prefix']
main()