From 38863d0a120fc39030ca3af63f2bd9d8b74798c8 Mon Sep 17 00:00:00 2001 From: herrfrei Date: Tue, 23 Feb 2021 08:36:35 +0100 Subject: [PATCH] Removed unprintable character (0xC2) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 079cdce..92c3397 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ expr.evaluate({'x': 2}) # 6.283185307179586 # get variables expr = parser.parse('x * (y * atan(1))') expr.variables() # ['x', 'y'] -expr.simplify({'y': 4}).variables() # ['x'] +expr.simplify({'y': 4}).variables() # ['x'] ``` Available operations