diff --git a/modules/boursorama/pages/investment.py b/modules/boursorama/pages/investment.py index ba4c7366..a01ffb90 100644 --- a/modules/boursorama/pages/investment.py +++ b/modules/boursorama/pages/investment.py @@ -70,8 +70,8 @@ class AccountInvestment(IsinMixin, Page): ---------------- label = StringField('Label of stocks') - code = StringField('Short code identifier of the stock') - description = StringField('Description of the stock') + code = StringField('Identifier of the stock (ISIN code)') + description = StringField('Short description of the stock') quantity = IntField('Quantity of stocks') unitprice = DecimalField('Buy price of one stock') unitvalue = DecimalField('Current value of one stock') diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index d0499a99..ece32804 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -159,8 +159,8 @@ class Investment(BaseObject): """ label = StringField('Label of stocks') - code = StringField('Short code identifier of the stock') - description = StringField('Description of the stock') + code = StringField('Identifier of the stock (ISIN code)') + description = StringField('Short description of the stock') quantity = DecimalField('Quantity of stocks') unitprice = DecimalField('Buy price of one stock') unitvalue = DecimalField('Current value of one stock')