delinting

This commit is contained in:
ed
2019-06-07 08:54:41 +00:00
parent 5414591362
commit fe0330f6f7
10 changed files with 63 additions and 44 deletions

View File

@@ -2,10 +2,11 @@
# coding: utf-8
from __future__ import print_function
import time
import threading
from .httpconn import *
from .authsrv import *
from .httpconn import HttpConn
from .authsrv import AuthSrv
class HttpSrv(object):
@@ -60,7 +61,7 @@ class HttpSrv(object):
del self.clients[cli]
if self.disconnect_func:
self.disconnect_func(addr)
self.disconnect_func(addr) # pylint: disable=not-callable
def thr_workload(self):
"""indicates the python interpreter workload caused by this HttpSrv"""