Skip to content

Commit

Permalink
fix : forest list error resolve (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
KJA000 authored Jul 26, 2023
1 parent c9ba1a4 commit c790ef9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion curations/selectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class CurationDto:
writer_is_verified: bool
created: datetime
map_image: str
writer_is_followed : bool
writer_is_followed : bool = None



Expand Down
2 changes: 1 addition & 1 deletion forest/selectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ForestDto:
comment_cnt: int
created: datetime
updated: datetime
writer_is_followed : bool
writer_is_followed : bool = None

content: str = None # detail
preview: str = None # list
Expand Down
2 changes: 1 addition & 1 deletion stories/selectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class StoryDto:
map_image: str
rep_pic: str
extra_pics: list[str]
writer_is_followed : bool
writer_is_followed : bool = None


def append_media_url(rest):
Expand Down

0 comments on commit c790ef9

Please sign in to comment.