From bab6dc2f75871e4c4fa9fa5713f4fbfa87098c41 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Tue, 25 Jun 2024 21:02:06 +0200 Subject: [PATCH] Add type/nullable hints --- KitchenSink/Commands/DropboxQueue.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KitchenSink/Commands/DropboxQueue.cs b/KitchenSink/Commands/DropboxQueue.cs index 4c1a5ea..aef4935 100644 --- a/KitchenSink/Commands/DropboxQueue.cs +++ b/KitchenSink/Commands/DropboxQueue.cs @@ -141,7 +141,7 @@ internal sealed class DropboxQueue : IDisposable { var parsedItems = arguments.Split(' ') .Select(x => x.Split(':')) - .Select(x => + .Select(x => { if (x.Length != 2) return ($"Unable to parse {string.Join(" ", x)}.", null);