You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: revert constraint_user/constraint_item to init as empty list
- Previously attempted to follow sklearn convention: set to None in __init__,
initialize to [] in fit()
- This caused CI failure because test accesses .constraint_user.append()
before fit() is called
- Reverted to original behavior (init as []) to maintain compatibility with
existing tests
- No impact on correctness: [] and None treated equivalently in fit()
0 commit comments