From b9b623bcbcdd6cb215146405d2f0e09ab6826fd0 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Fri, 18 Sep 2015 10:03:33 +0200 Subject: =?UTF-8?q?Use=20"More=E2=80=A6"=20hints=20in=20fahrenheit=5Fto=5F?= =?UTF-8?q?celsius?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/problems/introduction/fahrenheit_to_celsius/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/problems/introduction/fahrenheit_to_celsius/common.py') 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): -- cgit v1.2.1