diff --git a/sziszapangma/integration/service_core/embedding/embedding_base_processor.py b/sziszapangma/integration/service_core/embedding/embedding_base_processor.py
index d413dbbc92645b37be5f8a47187e3ef2214951c8..7a25d57a57d4c647cdb1358bb20f9bee801d776e 100644
--- a/sziszapangma/integration/service_core/embedding/embedding_base_processor.py
+++ b/sziszapangma/integration/service_core/embedding/embedding_base_processor.py
@@ -29,7 +29,7 @@ class EmbeddingBaseProcessor(ABC):
     def process_embeddings(self, language: str):
         words = request.json
         if words is not List[str]:
-            print(f'words: {words}')
+            print(f"words: {words}")
             raise Exception("Incorrect body")
         return jsonify(
             {word: self.numpy_to_list(self.get_embedding(word, language)) for word in words}