From c970f776bba4a0f4070c876aaeab72a3dca39835 Mon Sep 17 00:00:00 2001 From: pdancstep Date: Fri, 3 May 2024 11:29:57 -0700 Subject: [PATCH] Removed old argument from example --- example_scenes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example_scenes.py b/example_scenes.py index daea02eb4a..10e895f97f 100644 --- a/example_scenes.py +++ b/example_scenes.py @@ -26,7 +26,7 @@ def construct(self): matrix = [[1, 1], [0, 1]] linear_transform_words = VGroup( Text("This is what the matrix"), - IntegerMatrix(matrix, include_background_rectangle=True), + IntegerMatrix(matrix), Text("looks like") ) linear_transform_words.arrange(RIGHT)