Skip to content

Commit c0387c2

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

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

openedx_events/learning/data.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
pattern.
66
"""
77
from datetime import datetime
8-
from typing import Dict
98

109
import attr
1110
from opaque_keys.edx.keys import CourseKey
@@ -39,7 +38,7 @@ class UserData:
3938
"""
4039

4140
user_non_pii = attr.ib(type=UserNonPersonalData)
42-
user = attr.ib(type=UserPersonalData)
41+
user_pii = attr.ib(type=UserPersonalData)
4342

4443

4544
@attr.s(frozen=True)

0 commit comments

Comments
 (0)