Skip to content

Commit

Permalink
refactor: drop changes in forum events
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajgrimaldi committed Jan 8, 2025
1 parent 4389cfb commit 8f67ea2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openedx_events/learning/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,10 +422,10 @@ class DiscussionThreadData:
url = attr.ib(type=str)
user = attr.ib(type=UserData)
course_id = attr.ib(type=CourseKey)
discussion = attr.ib(type=dict[str, str], factory=dict)
discussion = attr.ib(type=dict, factory=dict)
user_course_roles = attr.ib(type=List[str], factory=list)
user_forums_roles = attr.ib(type=List[str], factory=list)
options = attr.ib(type=dict[str, str], factory=dict)
options = attr.ib(type=dict, factory=dict)


@attr.s(frozen=True)
Expand Down

0 comments on commit 8f67ea2

Please sign in to comment.