LINT fixes

This commit is contained in:
Fabio Manganiello 2020-04-23 18:33:57 +02:00
parent d067553a3a
commit 42d29ca1f6
1 changed files with 2 additions and 8 deletions

View File

@ -1,12 +1,8 @@
import importlib
import time
from threading import Thread
from platypush.bus import Bus
from platypush.backend import Backend
from platypush.backend.http.request import HttpRequest
from platypush.message.request import Request
class HttpPollBackend(Backend):
@ -60,8 +56,8 @@ class HttpPollBackend(Backend):
for request in requests:
if isinstance(request, dict):
type = request['type']
(module, name) = ('.'.join(type.split('.')[:-1]), type.split('.')[-1])
req_type = request['type']
(module, name) = ('.'.join(req_type.split('.')[:-1]), req_type.split('.')[-1])
module = importlib.import_module(module)
request = getattr(module, name)(**request)
elif not isinstance(request, HttpRequest):
@ -71,7 +67,6 @@ class HttpPollBackend(Backend):
request.bus = self.bus
self.requests.append(request)
def run(self):
super().run()
@ -84,4 +79,3 @@ class HttpPollBackend(Backend):
# vim:sw=4:ts=4:et: