From b673a2fe6b674c52f06a1a5904d1a80f4f46b73a Mon Sep 17 00:00:00 2001 From: jude Date: Sun, 7 Jul 2024 16:29:28 +0100 Subject: [PATCH] Fix types --- src/models/reminder/builder.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/reminder/builder.rs b/src/models/reminder/builder.rs index cd39a8a..3667ce0 100644 --- a/src/models/reminder/builder.rs +++ b/src/models/reminder/builder.rs @@ -55,7 +55,7 @@ pub struct ReminderBuilder { tts: bool, attachment_name: Option, attachment: Option>, - set_by: Option, + set_by: Option, } impl ReminderBuilder { @@ -132,7 +132,7 @@ pub struct MultiReminderBuilder<'a> { interval: Option, expires: Option, content: Content, - set_by: Option, + set_by: Option, ctx: &'a Context<'a>, guild_id: Option, }