From 1b4045926e379e585ab383ca0757570b2a1da845 Mon Sep 17 00:00:00 2001 From: Jan Max Meyer Date: Thu, 19 Oct 2023 15:07:25 +0200 Subject: [PATCH] typo: Yet another typo in logics-py example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83e7b4f..7f9d047 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Using Logics in Python: from logics import Logics logics = Logics("a + 2 * 3 + b") -print(logics.run({"a": 1, b: "-Logics"})) # "7-Logics" +print(logics.run({"a": 1, "b": "-Logics"})) # "7-Logics" ``` ## Features