Skip to content

Commit

Permalink
docs: remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rimsha-zaib committed Jan 25, 2024
1 parent 1d8f254 commit a789a5d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion openedxscorm/scormxblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,6 @@ def scorm_get_value(self, data, _suffix):
name = data.get("name")
if name in ["cmi.core.lesson_mode", "cmi.mode"]:
mode = self.get_mode(data)
print("mode ............................. ",mode)
return {"value": mode}
if name in ["cmi.core.lesson_status", "cmi.completion_status"]:
return {"value": self.lesson_status}
Expand Down
2 changes: 1 addition & 1 deletion openedxscorm/static/js/src/scormxblock.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function ScormXBlock(runtime, element, settings) {
"cmi.success_status",
"cmi.core.score.raw",
"cmi.score.raw",
"cmi.mode",
"cmi.mode"

];
var getValueUrl = runtime.handlerUrl(element, 'scorm_get_value');
Expand Down

0 comments on commit a789a5d

Please sign in to comment.