summaryrefslogtreecommitdiffstats
path: root/deluge/core/rpcserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/core/rpcserver.py')
-rw-r--r--deluge/core/rpcserver.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/deluge/core/rpcserver.py b/deluge/core/rpcserver.py
index 81b12054b..a204722ca 100644
--- a/deluge/core/rpcserver.py
+++ b/deluge/core/rpcserver.py
@@ -90,7 +90,7 @@ def format_request(call):
class ServerContextFactory(object):
- def getContext(self): # NOQA
+ def getContext(self): # NOQA: N802
"""
Create an SSL context.
@@ -133,7 +133,7 @@ class DelugeRPCProtocol(DelugeTransferProtocol):
# log.debug("RPCRequest: %s", format_request(call))
reactor.callLater(0, self.dispatch, *call)
- def sendData(self, data): # NOQA
+ def sendData(self, data): # NOQA: N802
"""
Sends the data to the client.
@@ -149,7 +149,7 @@ class DelugeRPCProtocol(DelugeTransferProtocol):
log.exception(ex)
raise
- def connectionMade(self): # NOQA
+ def connectionMade(self): # NOQA: N802
"""
This method is called when a new client connects.
"""
@@ -159,7 +159,7 @@ class DelugeRPCProtocol(DelugeTransferProtocol):
# Set the initial auth level of this session to AUTH_LEVEL_NONE
self.factory.authorized_sessions[self.transport.sessionno] = AUTH_LEVEL_NONE
- def connectionLost(self, reason=connectionDone): # NOQA
+ def connectionLost(self, reason=connectionDone): # NOQA: N802
"""
This method is called when the client is disconnected.