Skip to content

Commit

Permalink
Fix type error object not subscrtiptable on 3.8 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bosd committed Dec 15, 2024
1 parent 1196412 commit 3947490
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/invoice2data/extract/plugins/lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
from .. import parsers


def extract(self: OrderedDict[str, Any], content: str, output: Dict[str, Any]) -> None:
def extract(
self: "OrderedDict[str, Any]", content: str, output: Dict[str, Any]
) -> None:
"""Extract individual lines from an invoice.
This plugin has been replaced by the "lines" parser. All new templates
Expand Down

0 comments on commit 3947490

Please sign in to comment.