fix a mypy error

This commit is contained in:
Masahiro Sakai
2022-11-06 15:13:34 +09:00
parent 431b0fc835
commit 410e27c579
@@ -62,7 +62,7 @@ class _CachedExtraStudyProperty:
return union
@property
def union_user_attrs(self) -> Set[Tuple[str, Any]]:
def union_user_attrs(self) -> List[Tuple[str, Any]]:
union = list(self._union_user_attrs)
union.sort(key=lambda x: x[0])
return union