Skip to content

Commit

Permalink
refactor: [EDXOLDMNG-218] deletes unexpected unindent
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayBorovenskiy committed Jan 13, 2023
1 parent 3a56561 commit 22d4a7a
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions openedx_events/content_authoring/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,15 @@ class CertificateConfigData:
Attributes defined for Open edX CertificateConfig data object.
Arguments:
certificate_type (str): certificate type. Possible types are certificate relevant course modes such as credit,
verified, professional, no-id-professional, executive-education, paid-executive-education,
paid-bootcamp, masters.
certificate_type (str): certificate type. Possible types are certificate relevant course modes:
- credit,
- verified,
- professional,
- no-id-professional,
- executive-education,
- paid-executive-education,
- paid-bootcamp,
- masters.
course_key (CourseKey): identifier of the Course object.
title (str): certificate title.
signatories (List[CertificateSignatoryData]): contains a collection of signatures
Expand All @@ -122,4 +128,4 @@ class CertificateConfigData:
course_key = attr.ib(type=CourseKey)
title = attr.ib(type=str)
signatories = attr.ib(type=List[CertificateSignatoryData])
is_active = attr.ib(type=bool, default=False)
is_active = attr.ib(type=bool, default=False)

0 comments on commit 22d4a7a

Please sign in to comment.