Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 1712a26

Browse files
committed
Fix - remove extra param
1 parent 7e363ac commit 1712a26

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

runestone/mchoice/multiplechoice.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class MChoiceNode(nodes.General, nodes.Element, RunestoneIdNode):
3535
pass
3636

3737

38-
def visit_mc_common(self, node, node_type):
38+
def visit_mc_common(self, node):
3939

4040
res = ""
4141
if "random" in node["runestone_options"]:
@@ -81,7 +81,7 @@ def depart_mc_common(self, node):
8181

8282
def visit_mc_xml(self, node):
8383

84-
res = visit_mc_common(self, node, "xml")
84+
res = visit_mc_common(self, node)
8585
self.output.append(res)
8686

8787

0 commit comments

Comments
 (0)