From 18621003c921176e0d9b53de0b40b8d01e8c0a34 Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Fri, 6 Sep 2019 11:17:19 +0200 Subject: [PATCH] [weboob.capabilities.bank] Indentation cosmetic changes --- weboob/capabilities/bank.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/weboob/capabilities/bank.py b/weboob/capabilities/bank.py index b5d149170e..a4981c192d 100644 --- a/weboob/capabilities/bank.py +++ b/weboob/capabilities/bank.py @@ -481,18 +481,18 @@ class Investment(BaseObject): CODE_TYPE_ISIN = u'ISIN' CODE_TYPE_AMF = u'AMF' - label = StringField('Label of stocks') - code = StringField('Identifier of the stock') - code_type = StringField('Type of stock code (ISIN or AMF)') - 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') - valuation = DecimalField('Total current valuation of the Investment') - vdate = DateField('Value date of the valuation amount') - diff = DecimalField('Difference between the buy cost and the current valuation') - diff_ratio = DecimalField('Difference in ratio (1 meaning 100%) between the buy cost and the current valuation') - portfolio_share = DecimalField('Ratio (1 meaning 100%) of the current amount relative to the total') + label = StringField('Label of stocks') + code = StringField('Identifier of the stock') + code_type = StringField('Type of stock code (ISIN or AMF)') + 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') + valuation = DecimalField('Total current valuation of the Investment') + vdate = DateField('Value date of the valuation amount') + diff = DecimalField('Difference between the buy cost and the current valuation') + diff_ratio = DecimalField('Difference in ratio (1 meaning 100%) between the buy cost and the current valuation') + portfolio_share = DecimalField('Ratio (1 meaning 100%) of the current amount relative to the total') performance_history = Field('History of the performances of the stock (key=years, value=diff_ratio)', dict) srri = IntField('Synthetic Risk and Reward Indicator of the stock (from 1 to 7)') asset_category = StringField('Category of the stock') -- GitLab