From 0594f33fd5345ba665e11bb3d4d11338f9ad950f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 22:55:46 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- linear_programming/simplex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linear_programming/simplex.py b/linear_programming/simplex.py index 6ab6035ac..38f5cc096 100644 --- a/linear_programming/simplex.py +++ b/linear_programming/simplex.py @@ -154,8 +154,8 @@ class Tableau: ... [2, 1, 0, -1, 0, 1, 2] ... ]), 2, 2).change_stage().tolist() ... # doctest: +NORMALIZE_WHITESPACE - [[2.0, 1.0, 0.0, 0.0, 0.0], - [1.0, 2.0, -1.0, 0.0, 2.0], + [[2.0, 1.0, 0.0, 0.0, 0.0], + [1.0, 2.0, -1.0, 0.0, 2.0], [2.0, 1.0, 0.0, -1.0, 2.0]] """ # Objective of original objective row remains