diff options
| author | yo mama <pepper@scannerjammer.com> | 2015-03-06 00:47:16 -0800 |
|---|---|---|
| committer | yo mama <pepper@scannerjammer.com> | 2015-03-06 00:47:16 -0800 |
| commit | 497adf6689bdbe6183c6343062572b84a26892b2 (patch) | |
| tree | e0d29532db25fbb67ef47c2e3266745be98e3390 /Pb_Api/Param | |
| parent | e6dcac83910b1d022b05ca68fc8b0d4b2d32c619 (diff) | |
ok rewriting parts
Diffstat (limited to 'Pb_Api/Param')
| -rw-r--r-- | Pb_Api/Param/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Pb_Api/Param/__init__.py b/Pb_Api/Param/__init__.py index 362a3f7..58b3eb0 100644 --- a/Pb_Api/Param/__init__.py +++ b/Pb_Api/Param/__init__.py @@ -6,7 +6,7 @@ class Pb_Api_Param(object): self._value_default = None self.name = name self.required = required - self.is_ready = 0 #should I try that? + self.is_ready = 0 self.value = value self.set_by_user = set_by_user def __str__(self): @@ -20,7 +20,7 @@ class Pb_Api_Param(object): self._value = value if not self._value is None: self.is_ready = 1 - self.set_by_user = 1 #like that? yeah also need method for setting default value + self.set_by_user = 1 value = property(get_value, set_value) def default(self, value): |
