diff --git a/algo/detectors/pasta/ReadoutConfig.cxx b/algo/detectors/pasta/ReadoutConfig.cxx
index b03a0246ba32d26220ddd9308a350da33aba5cf4..5056ed97d729ab84336613c3b8b30f27ee21d8b8 100644
--- a/algo/detectors/pasta/ReadoutConfig.cxx
+++ b/algo/detectors/pasta/ReadoutConfig.cxx
@@ -15,4 +15,4 @@ namespace cbm::algo::pasta
 
   uint8_t ReadoutConfig::GetSystemVersion() const { return fgSystemVersion; }
 
-}  // namespace cbm::algo::pasta
\ No newline at end of file
+}  // namespace cbm::algo::pasta
diff --git a/algo/detectors/pasta/Unpack.cxx b/algo/detectors/pasta/Unpack.cxx
index c63a81c0640680f2779ca2288b86c15fb2318ba2..d80af3cc5e1a1b525037fb490730cfbe274ed407 100644
--- a/algo/detectors/pasta/Unpack.cxx
+++ b/algo/detectors/pasta/Unpack.cxx
@@ -24,4 +24,4 @@ namespace cbm::algo::pasta
 
   Unpack::Result_t Unpack::operator()(const fles::Timeslice& ts) const { return DoUnpack(fles::Subsystem::RICH, ts); }
 
-}  // namespace cbm::algo::pasta
\ No newline at end of file
+}  // namespace cbm::algo::pasta
diff --git a/algo/qa/unpack/PastaDigiQa.cxx b/algo/qa/unpack/PastaDigiQa.cxx
index 0b3bed6e144f43dd4f2f56e658ef98c4d60c8086..745a62f14b792c6f277b2ed74fc3332c5295b54d 100644
--- a/algo/qa/unpack/PastaDigiQa.cxx
+++ b/algo/qa/unpack/PastaDigiQa.cxx
@@ -1,6 +1,6 @@
 /* Copyright (C) 2025 Jagiellonian University, Krakow
-SPDX-License-Identifier: GPL-3.0-only
-Authors: Bartosz Sobol [committer] */
+   SPDX-License-Identifier: GPL-3.0-only
+   Authors: Bartosz Sobol [committer] */
 
 #include "PastaDigiQa.h"
 
@@ -13,7 +13,7 @@ namespace cbm::algo::pasta
     , fpSender{pSender}
     , fReadoutSetup(config)
   {
-    if (fpSender.get() == nullptr) {
+    if (fpSender == nullptr) {
       return;
     }
 
@@ -45,7 +45,7 @@ namespace cbm::algo::pasta
 
   void DigiQa::Exec(const PODVector<CbmPastaDigi>& digis, const uint64_t tsIndex)
   {
-    if (fpSender.get() == nullptr) {
+    if (fpSender == nullptr) {
       return;
     }
 
@@ -68,4 +68,4 @@ namespace cbm::algo::pasta
 
   void DigiQa::operator()(const PODVector<CbmPastaDigi>& digis, const uint64_t tsIndex) { Exec(digis, tsIndex); }
 
-}  // namespace cbm::algo::pasta
\ No newline at end of file
+}  // namespace cbm::algo::pasta
diff --git a/algo/qa/unpack/PastaDigiQa.h b/algo/qa/unpack/PastaDigiQa.h
index 875a226951bb3589bc3515056efe3d8385102163..ab4f11fa7f786e7684b4d47916bab847296783da 100644
--- a/algo/qa/unpack/PastaDigiQa.h
+++ b/algo/qa/unpack/PastaDigiQa.h
@@ -1,6 +1,6 @@
 /* Copyright (C) 2025 Jagiellonian University, Krakow
-SPDX-License-Identifier: GPL-3.0-only
-Authors: Bartosz Sobol [committer] */
+   SPDX-License-Identifier: GPL-3.0-only
+   Authors: Bartosz Sobol [committer] */
 
 #pragma once
 
@@ -48,4 +48,4 @@ namespace cbm::algo::pasta
     ReadoutConfig fReadoutSetup;
   };
 
-}  // namespace cbm::algo::pasta
\ No newline at end of file
+}  // namespace cbm::algo::pasta