From 91c570341d4f021b1a0f7b35701ce70b51884436 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Wed, 8 May 2024 15:44:21 +0530 Subject: [PATCH] Lint fix --- mobile/lib/utils/file_uploader.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mobile/lib/utils/file_uploader.dart b/mobile/lib/utils/file_uploader.dart index ebe1926e16..c684dfd51d 100644 --- a/mobile/lib/utils/file_uploader.dart +++ b/mobile/lib/utils/file_uploader.dart @@ -905,7 +905,8 @@ class FileUploader { if (File(encryptedFilePath).existsSync()) { if (isMultiPartUpload && !uploadCompleted) { _logger.fine( - "skip delete for multipart encrypted file $encryptedFilePath"); + "skip delete for multipart encrypted file $encryptedFilePath", + ); } else { _logger.fine("deleting encrypted file $encryptedFilePath"); await File(encryptedFilePath).delete();