From 0ef6e4f94b9f36960847982d60af79a553bf9d06 Mon Sep 17 00:00:00 2001 From: Yannick Vaucher Date: Wed, 6 Nov 2013 18:27:53 +0100 Subject: [PATCH] [FIX] file parser __init__ comment --- account_statement_base_import/parser/file_parser.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/account_statement_base_import/parser/file_parser.py b/account_statement_base_import/parser/file_parser.py index 54f7a4bb..2f4fbdaf 100644 --- a/account_statement_base_import/parser/file_parser.py +++ b/account_statement_base_import/parser/file_parser.py @@ -40,10 +40,9 @@ class FileParser(BankStatementImportParser): def __init__(self, parse_name, ftype='csv', extra_fields=None, header=None, **kwargs): """ - :param char: parse_name : The name of the parser - :param list: keys_to_validate : contain the key that need to be present in the file - :param char ftype: extension of the file (could be csv or xls) - :param dict extra_fields: extra fields to add to the conversion dict. In the format + :param char: parse_name: The name of the parser + :param char: ftype: extension of the file (could be csv or xls) + :param dict: extra_fields: extra fields to add to the conversion dict. In the format {fieldname: fieldtype} :param list: header : specify header fields if the csv file has no header """