♻️ Use of relative imports for api modules

This commit is contained in:
2023-10-22 23:34:58 +02:00
parent 0a7337a313
commit 1bb75b28eb
11 changed files with 20 additions and 20 deletions

View File

@@ -8,8 +8,8 @@ from msgspec import ValidationError
from msgspec.json import Decoder
from .idfm_types import Destinations as IdfmDestinations, IdfmResponse, IdfmState
from db import Database
from models import Line, Stop, StopArea
from ..db import Database
from ..models import Line, Stop, StopArea
class IdfmInterface: