From f3461b281e7c2ed5567f6582f53d9a4ba029138b Mon Sep 17 00:00:00 2001 From: rswamina Date: Thu, 23 Apr 2026 11:23:07 +0100 Subject: [PATCH] changed line numbers referencing Python diag --- _episodes/08-diagnostics.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_episodes/08-diagnostics.md b/_episodes/08-diagnostics.md index 0d47852a..77b953d0 100644 --- a/_episodes/08-diagnostics.md +++ b/_episodes/08-diagnostics.md @@ -60,10 +60,10 @@ For reference, we show the diagnostic code in the dropdown box below. There are four main sections in the script: - A description i.e. the ``docstring`` (line 1). -- Import statements (line 2-16). -- Functions that implement our analysis (line 21-102). +- Import statements (line 3-17). +- Functions that implement our analysis and record provenance (line 22-115). - A typical Python top-level script i.e. ``if __name__ == '__main__'`` (line - 105-108). + 118-120). > ## diagnostic.py >