From 84fe994a3fefaa79d62e5d236ae647f642dd856f Mon Sep 17 00:00:00 2001 From: Steveis Date: Wed, 29 Mar 2017 12:49:53 +0100 Subject: [PATCH] Make absolutely sure functions are immediately after import Plus a small copy change. Needs copy check. --- worksheet2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worksheet2.md b/worksheet2.md index 4687699..bebf395 100644 --- a/worksheet2.md +++ b/worksheet2.md @@ -42,7 +42,7 @@ With the hardware set up, we can begin to program the software that will make ev take_pic_btn.when_pressed = take_picture ``` -1. We will write these two functions so that the buttons know what to do when they are pressed. Functions are usually written at the start of a program, immediately after the import statements. Add the functions, but with some placeholder code to just print a message when they are pressed, so we can test them. +1. We will write these two functions so that the buttons know what to do when they are pressed. Functions are usually written at the start of a program, immediately after the import statements. Add the following two functions immediately after the import statement, with some placeholder code to print a message when they are pressed, so we can test them. ```python def next_overlay():