From d45758b8823ac00ea7ffdb8445eb5b8d9bb5e48c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joscha=20G=C3=B6tzer?= Date: Thu, 3 Dec 2020 08:00:28 +0100 Subject: [PATCH] Looks like a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 941a0e4..d033e1a 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ import chain @chain def calculate_average(context, type='meter'): - nbs = [house.get(type) for house in state.houses] + nbs = [house.get(type) for house in context.houses] context.avg = sum(nbs) / len(nbs)