First of all, thank you very much for the awesome project!
I would like to create a PR for this myself. I just felt a little silly for such a small change and I want to check in with the idea first.
Is your feature request related to a problem? Please describe.
I recently discovered, that the interest payout event does include the information for deducted taxes but event.py misses to extract taxes for this event.
Describe the solution you'd like
Including "Steuern" in line 327 in event.py might solve the issue.
Change this
elif ititle == "Steuer" and not taxes_dict:
to this
elif ititle in ["Steuer", "Steuern"] and not taxes_dict:
First of all, thank you very much for the awesome project!
I would like to create a PR for this myself. I just felt a little silly for such a small change and I want to check in with the idea first.
Is your feature request related to a problem? Please describe.
I recently discovered, that the interest payout event does include the information for deducted taxes but event.py misses to extract taxes for this event.
Describe the solution you'd like
Including "Steuern" in line 327 in event.py might solve the issue.
Change this
to this