Skip to content

Commit

Permalink
add parse_invest_record line
Browse files Browse the repository at this point in the history
  • Loading branch information
jaik03 committed Mar 31, 2024
1 parent 6a6cf3d commit 3b6e19c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ofxstatement/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3b6e19c

Please sign in to comment.