Commit 22caad6e by Piotr Mitros

Fixed typo

parent 06b2f0db
...@@ -57,9 +57,9 @@ class RecommenderXBlock(XBlock): ...@@ -57,9 +57,9 @@ class RecommenderXBlock(XBlock):
This XBlock will show a set of recommended resources This XBlock will show a set of recommended resources
""" """
# Scope-wide. List of JSON objects corresponding to recommendations combine XML and user. # Scope-wide. List of JSON objects corresponding to recommendations combine XML and user.
default_recommendations = List(help="List of help resources", default=0, scope=Scope.content) default_recommendations = List(help="List of help resources", default=[], scope=Scope.content)
# Scope-wide. List of JSON objects corresponding to recommendations as defined in XML. # Scope-wide. List of JSON objects corresponding to recommendations as defined in XML.
recommendations = List(help="List of help resources", default=0, scope=Scope.content) recommendations = List(help="List of help resources", default=[], scope=Scope.content)
# Upvotes for this particular user # Upvotes for this particular user
upvotes = List(help="List of items user gave upvote to", default=False, scope=Scope.user_state) upvotes = List(help="List of items user gave upvote to", default=False, scope=Scope.user_state)
# Downvotes for this particular user # Downvotes for this particular user
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment