Use proper Python imports
All checks were successful
Test / test (push) Successful in 1m6s

This commit is contained in:
polyfloyd 2025-07-17 18:03:32 +02:00
parent ed33bdfcba
commit a3b5392f7f
8 changed files with 38 additions and 19 deletions

View file

@ -1,15 +1,15 @@
import json
import logging
import os
import re
from dataclasses import dataclass
from decimal import Decimal
from functools import reduce
from pyquery import PyQuery as pq
import json
import re
import os
import requests
import logging
from supermarktconnector.ah import AHConnector
from typing import List, Optional
import requests
from pyquery import PyQuery as pq
from supermarktconnector.ah import AHConnector
vat = Decimal('1.09')