diff --git a/examples/example3/ChildProcess3.py b/examples/example3/ChildProcess3.py
index 9d7a37ebc80d23a50ca0197e2d08cd885a49267f..456a71fd1686f6b242b3a88f1cf0774b71710563 100644
--- a/examples/example3/ChildProcess3.py
+++ b/examples/example3/ChildProcess3.py
@@ -16,7 +16,6 @@ class ChildProcess3(cmp.CProcess):
     def postrun_init(self):
         self.logger, self.logger_h = self.create_new_logger(f"{self.__class__.__name__}-({os.getpid()})")
 
-
     @cmp.CProcess.register_for_signal()
     def test_call(self, a):
         self.logger.info(f"{os.getpid()} -> test_call!")
@@ -24,14 +23,10 @@ class ChildProcess3(cmp.CProcess):
         self.test_call2 = 1
         return a
 
-    #@CProperty
-    #def test_call2(self, value: int = 0):
-    #    self.my_value = value
-
     @CProperty
     def test_call2(self, value: int):
         self.my_value = value
 
     @test_call2.setter(emit_to='bar')
     def test_call2(self, value: int):
-        self.my_value = value
\ No newline at end of file
+        self.my_value = value
diff --git a/pyproject.toml b/pyproject.toml
index fa0d6fbac411db6941b161a1e7ab114bec009009..10db3651d928f3205c7ec5fdcd23506e3c2f25c7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "cmp"
-version = "0.0.1"
+version = "0.0.2"
 authors = [
   { name="Christoph Schmidt", email="cschmidt.fs@gmail.com" },
 ]