Skip to content

Commit

Permalink
Update abstract_service.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mdabrowski1990 committed Nov 8, 2024
1 parent 23742f2 commit 6e6cd7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions uds/database/abstract_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
class AbstractService(ABC):
"""Common interface for all diagnostic services."""

@abstractmethod # noqa: F841
@property
@property # noqa: F841
@abstractmethod
def request_sid(self) -> RequestSID:
"""Service Identifier in request messages."""

@abstractmethod # noqa: F841
@property
@property # noqa: F841
@abstractmethod
def response_sid(self) -> ResponseSID:
"""Service Identifier in (positive) response messages."""

Expand Down

0 comments on commit 6e6cd7f

Please sign in to comment.