Skip to content

Commit

Permalink
added docstring to __get_assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
benne238 committed Jul 1, 2021
1 parent a84d8e7 commit 5383f8f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/webqueue2api/parser/item.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,14 @@ def __get_sorted_sections(self, sectionsList: list) -> list:
return sortedSections

def __get_assignments(self) -> list:
"""Returns a list of dictionaries containing assignments
Example:
Returns:
list: list of dictionaries which represent assignment sections
"""
assignment_list = []

for index, header in enumerate(self.headers):
Expand Down

0 comments on commit 5383f8f

Please sign in to comment.