diff --git a/utility/obsw_binary_uploader.py b/utility/obsw_binary_uploader.py
index 0ad1b6aeeb638c9d6ecc9f1ec7d5fb126a528252..958b2b0c84e42d12c8e103939522666e41927839 100644
--- a/utility/obsw_binary_uploader.py
+++ b/utility/obsw_binary_uploader.py
@@ -15,7 +15,7 @@ from glob import glob
 from typing import Deque
 
 from tmtc_core.comIF.obsw_com_interface import CommunicationInterface
-from tc.obsw_tc_service23_sdcard import FileTransferHelper
+from utility.obsw_file_transfer_helper import FileTransferHelper
 import config.obsw_config as g
 from tmtc_core.utility.obsw_tmtc_printer import TmTcPrinter, DisplayMode
 from tmtc_core.utility.obsw_logger import get_logger
diff --git a/utility/obsw_file_transfer_helper.py b/utility/obsw_file_transfer_helper.py
index fbfa2337882548ae2161fa50bf8f24fa6b258128..c6efb90e7e15cf98b494e9c895f9137b88107c6f 100644
--- a/utility/obsw_file_transfer_helper.py
+++ b/utility/obsw_file_transfer_helper.py
@@ -12,7 +12,7 @@ from tc.obsw_tc_service23_sdcard import \
 class FileTransferHelper:
     """
     This helper class fills the provided TC queue with appropriate PUS telecommands
-    to transfer a large file.
+    to transfer a file.
     There are three modes which determine which telecommands will be generated:
     1. NORMAL:      Generate telecommand to create a new file and append data packets if
                     the file data is too large. This will be the default mode.