From 0794c16aec0baba99596cb48cac4d65a9cb149d2 Mon Sep 17 00:00:00 2001 From: Lubomir Dolezal Date: Sun, 7 Jan 2024 12:34:57 +0100 Subject: [PATCH] fix --- lessons/beginners-en/argparse/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lessons/beginners-en/argparse/index.md b/lessons/beginners-en/argparse/index.md index 050ad1901b..1585f02c54 100644 --- a/lessons/beginners-en/argparse/index.md +++ b/lessons/beginners-en/argparse/index.md @@ -10,8 +10,7 @@ That user can be you as a creator of code and someone else you give access to it ### Motivation -In the we have shown that sometimes you need to call a Python program -independently with different arguments in order to run computations with different values. +In the [testing lesson]({{ lesson_url('beginners-en/testing') }}) we have shown that sometimes you need to call a Python program independently with different arguments in order to run computations with different values. Letting the tester or user pass these **arguments** from command line (which means not manually editing them inside the Python script) is a great option.