From e7cc95123a095527ee78e6dd207d96e351939c06 Mon Sep 17 00:00:00 2001 From: ThaHobbyist Date: Mon, 15 Jul 2024 17:21:55 +0530 Subject: [PATCH] Removed writeOut from ValueProperty parent class --- pyvnt/Reference/basic.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pyvnt/Reference/basic.py b/pyvnt/Reference/basic.py index c7e7f56..94644b0 100755 --- a/pyvnt/Reference/basic.py +++ b/pyvnt/Reference/basic.py @@ -20,10 +20,7 @@ def __init__(self): @abstractmethod def instance_restricted(self): pass - - @abstractmethod - def writeOut(self, file): - pass + class PropertyInt(ValueProperty):