summaryrefslogtreecommitdiff
path: root/python/problems/introduction/fahrenheit_to_celsius/common.py
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-09-18 10:03:33 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-09-18 10:03:33 +0200
commitb9b623bcbcdd6cb215146405d2f0e09ab6826fd0 (patch)
tree4d08ca435d811b4141dbf198da558c4ca6003a1a /python/problems/introduction/fahrenheit_to_celsius/common.py
parentdce85b3e2ee99ca3a6692ebdd862b8a228c87f19 (diff)
Use "Moreā€¦" hints in fahrenheit_to_celsius
Diffstat (limited to 'python/problems/introduction/fahrenheit_to_celsius/common.py')
-rw-r--r--python/problems/introduction/fahrenheit_to_celsius/common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/problems/introduction/fahrenheit_to_celsius/common.py b/python/problems/introduction/fahrenheit_to_celsius/common.py
index 0bb6468..1ba0e15 100644
--- a/python/problems/introduction/fahrenheit_to_celsius/common.py
+++ b/python/problems/introduction/fahrenheit_to_celsius/common.py
@@ -19,9 +19,9 @@ hint_type = {
'no_input_call': Hint('no_input_call'),
'expressions_python': Hint('expressions_python'),
'printing': Hint('printing'),
- 'name_error': HintSequence('name_error', 4),
- 'unsupported_operand': HintSequence('unsupported_operand', 4),
- 'not_callable': HintSequence('not_callable', 4),
+ 'name_error': Hint('name_error'),
+ 'unsupported_operand': Hint('unsupported_operand'),
+ 'not_callable': Hint('not_callable'),
}
def test(python, code):