From 579e185b86682db2616dc4adedd72723b376f2b7 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 8 Jul 2021 20:37:41 +0000 Subject: [PATCH] Bouncer: Minor docs edit & remove un-needed Validator import --- src/eddn/Bouncer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/eddn/Bouncer.py b/src/eddn/Bouncer.py index 5ef64fd..b479e98 100644 --- a/src/eddn/Bouncer.py +++ b/src/eddn/Bouncer.py @@ -19,8 +19,7 @@ Architecture: 2. The payload is extracted using `get_decompressed_message()`, as the message *may* be compressed, but might not be. - 3. The result of that, which XXX, - is passed on to forward_message() + 3. The result of that is passed on to forward_message() which spawns a greenlet to actually send the message on using `push_message()`. @@ -41,7 +40,6 @@ from pkg_resources import resource_string # import os from eddn.conf.Settings import Settings, loadConfig -from eddn.core.Validator import Validator, ValidationSeverity from gevent import monkey monkey.patch_all()