From 6df55623bdf89cd3203fbcc86a114636b1a253da Mon Sep 17 00:00:00 2001 From: Phill Date: Sat, 16 Sep 2023 19:16:41 +0200 Subject: [PATCH] style: format code --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index cc86e0a..8a8e310 100644 --- a/src/main.rs +++ b/src/main.rs @@ -57,7 +57,10 @@ fn opts() -> OptionParser { .argument::("usize") .fallback(8); - let rl_max_requests = long("max_requests").help("Change the amount of requests a user can send before getting rate-limited by the server").argument::("u32").fallback(100); + let rl_max_requests = long("max_requests"). + help("Change the amount of requests a user can send before getting rate-limited by the server"). + argument::("u32"). + fallback(100); let rl_reset_duration = long("reset_duration") .help("Change the duration for the interval in which the rate-limit list get's cleared (In seconds)")