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,9 +1,10 @@
from dataclasses import dataclass
from decimal import Decimal, ROUND_UP
from typing import Dict, Optional, List
import logging
import scrapers
import shlex
from dataclasses import dataclass
from decimal import ROUND_UP, Decimal
from typing import Dict, List, Optional
import inflatinator.scrapers as scrapers
def resale_price(prod: scrapers.Product) -> Decimal: