From 3b6e19cf570de78139202ae208d0a3909f92419e Mon Sep 17 00:00:00 2001 From: Jake Cadwell Date: Sun, 31 Mar 2024 11:36:42 -0700 Subject: [PATCH] add parse_invest_record line --- src/ofxstatement/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ofxstatement/parser.py b/src/ofxstatement/parser.py index bd71cdc..387b050 100644 --- a/src/ofxstatement/parser.py +++ b/src/ofxstatement/parser.py @@ -57,7 +57,7 @@ def parse_record(self, line: LT) -> Optional[StatementLine]: # pragma: no cover """Parse given transaction line and return StatementLine object""" raise NotImplementedError - def parse_invest_record (self, line: LT) -> InvestStatementLine: # pragma: no cover + def parse_invest_record (self, line: LT) -> Optional[InvestStatementLine]: # pragma: no cover """Parse given investement transaction line and return InvetStatementLine object""" raise NotImplementedError