Skip to content

Commit

Permalink
Ignore mypy issues in naive recommender
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianSosic committed May 29, 2024
1 parent 21889ee commit cbb901a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions baybe/recommenders/naive.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class NaiveHybridSpaceRecommender(PureRecommender):
a non-hybrid space, it uses the corresponding recommender.
"""

# TODO: Cleanly implement naive recommender using fixed parameter class

# Class variables
compatibility: ClassVar[SearchSpaceType] = SearchSpaceType.HYBRID
# See base class.
Expand Down
1 change: 1 addition & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ exclude = (?x)(
| baybe/utils/dataframe.py
| baybe/deprecation.py
| baybe/exceptions.py
| baybe/recommenders/naive.py
| baybe/scaler.py
| baybe/simulation.py
)
Expand Down

0 comments on commit cbb901a

Please sign in to comment.