Skip to content

Commit ca00991

Browse files
committed
[FIX] add RET parser, as usual a new key appear from no-where. I should refactor the code to avoid this kind of hack, indeed we should implement a default parser for all 'strange case'
1 parent f21e1bf commit ca00991

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cfonb/parser/common.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,13 @@ class ParserPDO(Parser):
404404
]
405405

406406

407+
class ParserRET(Parser):
408+
_code = 'RET'
409+
_regex = [
410+
('ret', G_ALL, 70),
411+
]
412+
413+
407414
#specific to withdrawal
408415
class ParserRUM(Parser):
409416
_code = 'RUM'

0 commit comments

Comments
 (0)