Skip to content

Commit

Permalink
fix: last_draft_created_by attr type
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Chávez <[email protected]>
  • Loading branch information
rpenido and ChrisChV authored Sep 16, 2024
1 parent 857d580 commit c7d221e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openedx/core/djangoapps/content_libraries/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class LibraryXBlockMetadata:
display_name = attr.ib("")
last_published = attr.ib(default=None, type=datetime)
last_draft_created = attr.ib(default=None, type=datetime)
last_draft_created_by = attr.ib(default=None, type=datetime)
last_draft_created_by = attr.ib("")
published_by = attr.ib("")
has_unpublished_changes = attr.ib(False)
tags_count = attr.ib(0)
Expand Down

0 comments on commit c7d221e

Please sign in to comment.