Skip to content

Commit f6f2800

Browse files
fix: add explicit name to user data class
1 parent 258804a commit f6f2800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openedx_events/learning/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class UserData:
3939
"""
4040

4141
user_non_pii = attr.ib(type=UserNonPersonalData)
42-
user = attr.ib(type=UserPersonalData)
42+
user_pii = attr.ib(type=UserPersonalData)
4343

4444

4545
@attr.s(frozen=True)

0 commit comments

Comments
 (0)