style: remove trailing whitespace from profile model

This commit is contained in:
666ghj 2026-07-22 19:50:04 +08:00
parent 9f80ad66fd
commit c415387995
1 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ class OasisAgentProfile:
name: str
bio: str
persona: str
# 可选字段 - Reddit风格
karma: int = 1000
@ -115,7 +115,7 @@ class OasisAgentProfile:
self.gender = _coerce_to_str(self.gender) or None
self.mbti = _coerce_to_str(self.mbti) or None
self.interested_topics = _coerce_to_str_list(self.interested_topics)
def to_reddit_format(self) -> Dict[str, Any]:
"""转换为Reddit平台格式"""
profile = {