diff --git a/common/lib/capa/capa/responsetypes.py b/common/lib/capa/capa/responsetypes.py
index 1b06ce63db..3aabc4adbd 100644
--- a/common/lib/capa/capa/responsetypes.py
+++ b/common/lib/capa/capa/responsetypes.py
@@ -661,15 +661,6 @@ class ChoiceResponse(LoncapaResponse):
class MultipleChoiceResponse(LoncapaResponse):
# TODO: handle direction and randomize
- snippets = [{'snippet': '''
-
- `a+b`
-
-
-
-
-
- '''}]
response_tag = 'multiplechoiceresponse'
max_inputfields = 1
@@ -755,14 +746,6 @@ class OptionResponse(LoncapaResponse):
'''
TODO: handle direction and randomize
'''
- snippets = [{'snippet': """
-
- The location of the sky
-
-
- The location of the earth
-
- """}]
response_tag = 'optionresponse'
hint_tag = 'optionhint'
@@ -903,39 +886,6 @@ class CustomResponse(LoncapaResponse):
Custom response. The python code to be run should be in ...
or in a
'''
- snippets = [{'snippet': r"""
-
-
- Suppose that \(I(t)\) rises from \(0\) to \(I_S\) at a time \(t_0 \neq 0\)
- In the space provided below write an algebraic expression for \(I(t)\).
-
-
-
-
- correct=['correct']
- try:
- r = str(submission[0])
- except ValueError:
- correct[0] ='incorrect'
- r = '0'
- if not(r=="IS*u(t-t0)"):
- correct[0] ='incorrect'
-
- """},
- {'snippet': """
-
-
-
-
- """}]
response_tag = 'customresponse'
@@ -1245,16 +1195,6 @@ class SymbolicResponse(CustomResponse):
"""
Symbolic math response checking, using symmath library.
"""
- snippets = [{'snippet': r'''
- Compute \[ \exp\left(-i \frac{\theta}{2} \left[ \begin{matrix} 0 & 1 \\ 1 & 0 \end{matrix} \right] \right) \]
- and give the resulting \(2\times 2\) matrix:
-
-
-
-
- Your input should be typed in as a list of lists, eg [[1,2],[3,4]].
-
- '''}]
response_tag = 'symbolicresponse'
@@ -1518,44 +1458,6 @@ class ExternalResponse(LoncapaResponse):
Typically used by coding problems.
'''
- snippets = [{'snippet': '''
-
-
-
- '''}]
response_tag = 'externalresponse'
allowed_inputfields = ['textline', 'textbox']
@@ -1701,23 +1603,6 @@ class FormulaResponse(LoncapaResponse):
'''
Checking of symbolic math response using numerical sampling.
'''
- snippets = [{'snippet': '''
-
-
-
-
-
- Give an equation for the relativistic energy of an object with mass m.
-
-
-
-
-
-
- '''}]
response_tag = 'formularesponse'
hint_tag = 'formulahint'
@@ -1908,19 +1793,6 @@ class ImageResponse(LoncapaResponse):
Returns:
True, if click is inside any region or rectangle. Otherwise False.
"""
- snippets = [{'snippet': '''
-
-
-
-
-
- '''}]
response_tag = 'imageresponse'
allowed_inputfields = ['imageinput']