fix boobank
This commit is contained in:
parent
e2f9bdb054
commit
893bd3e70b
1 changed files with 2 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ class Account(object):
|
||||||
return self._balance
|
return self._balance
|
||||||
|
|
||||||
@balance.setter
|
@balance.setter
|
||||||
def balance_set(self, value):
|
def balance(self, value):
|
||||||
self._balance = float(value)
|
self._balance = float(value)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
@ -52,7 +52,7 @@ class Account(object):
|
||||||
return self._coming
|
return self._coming
|
||||||
|
|
||||||
@coming.setter
|
@coming.setter
|
||||||
def coming_set(self, value):
|
def coming(self, value):
|
||||||
self._coming = float(value)
|
self._coming = float(value)
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue