diff --git a/src/input-helper.ts b/src/input-helper.ts
index c76bed5..fa4aafc 100644
--- a/src/input-helper.ts
+++ b/src/input-helper.ts
@@ -109,6 +109,7 @@ export async function getInputs(): Promise<IGitSourceSettings> {
   result.showProgress =
     (core.getInput('show-progress') || 'true').toUpperCase() === 'TRUE'
   core.debug(`show progress = ${result.showProgress}`)
+  
   // LFS
   result.lfs = (core.getInput('lfs') || 'false').toUpperCase() === 'TRUE'
   core.debug(`lfs = ${result.lfs}`)