From f74f8cf0f48b0511ed11d53eaab52b484ba3d549 Mon Sep 17 00:00:00 2001 From: kwaaak Date: Tue, 26 Mar 2019 22:08:16 +0100 Subject: [PATCH] Update core_section.py --- sopel/config/core_section.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/sopel/config/core_section.py b/sopel/config/core_section.py index 5da658a023..5e885137e3 100644 --- a/sopel/config/core_section.py +++ b/sopel/config/core_section.py @@ -217,14 +217,11 @@ def homedir(self): verify_ssl = ValidatedAttribute('verify_ssl', bool, default=True) """Whether to require a trusted SSL certificate for SSL connections.""" - flood_burst_lines = ValidatedAttribute('flood_burst_lines', int, - default=4) + flood_burst_lines = ValidatedAttribute('flood_burst_lines', int, default=4) """How many messages can be sent in burst mode.""" - flood_empty_wait = ValidatedAttribute('flood_empty_wait', float, - default=0.7) + flood_empty_wait = ValidatedAttribute('flood_empty_wait', float, default=0.7) """How long to wait between sending messages when not in burst mode, in seconds.""" - flood_refill_rate = ValidatedAttribute('flood_refill_rate', int, - default=1) + flood_refill_rate = ValidatedAttribute('flood_refill_rate', int, default=1) """How quickly burst mode recovers, in messages per second."""