Skip to content

Commit

Permalink
Separate services module in database
Browse files Browse the repository at this point in the history
  • Loading branch information
mdabrowski1990 committed Nov 11, 2024
1 parent 6e6cd7f commit 351526d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uds/database/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"""

from .abstract_data_record import AbstractDataRecord, DataRecordType, DecodedDataRecord
from .abstract_service import AbstractService
from .services import AbstractService
3 changes: 3 additions & 0 deletions uds/database/services/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""Database implementation for diagnostic services."""

from .abstract_service import AbstractService
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from uds.message import RequestSID, ResponseSID
from uds.utilities import RawBytesAlias, RawBytesListAlias

from .abstract_data_record import DecodedDataRecord
from ..abstract_data_record import DecodedDataRecord

DataRecordValueAlias = Union[int, float, str, Iterable[Dict[str, "DataRecordValueAlias"]]]
"Alias of input with Data Records values."
Expand Down

0 comments on commit 351526d

Please sign in to comment.