Skip to content

Commit

Permalink
added comment method to pass the test
Browse files Browse the repository at this point in the history
  • Loading branch information
wverastegui committed Dec 5, 2023
1 parent 38cf9b9 commit 3ffc113
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion RIAssigner/data/SimpleData.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from copy import copy
from typing import Iterable
from typing import Iterable, Optional

from RIAssigner.utils import is_sorted

Expand Down Expand Up @@ -51,3 +51,6 @@ def retention_times(self) -> Iterable[Data.RetentionTimeType]:
def retention_indices(self, values: Iterable[Data.RetentionIndexType]):
raise NotImplementedError()

@property
def comment(self) -> Iterable[Optional[str]]:
return None

0 comments on commit 3ffc113

Please sign in to comment.