From ce15f5921fe69809a602b1c2bcec5b753954b394 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 20:13:06 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- data_structures/arrays/monotonic_array.py | 1 + 1 file changed, 1 insertion(+) diff --git a/data_structures/arrays/monotonic_array.py b/data_structures/arrays/monotonic_array.py index 55850c54f..342d443a9 100644 --- a/data_structures/arrays/monotonic_array.py +++ b/data_structures/arrays/monotonic_array.py @@ -33,4 +33,5 @@ if __name__ == "__main__": print(is_monotonic([1, 3, 2])) # Output: False import doctest + doctest.testmod()