From 2d90fe901a04c77ded0697544a2cd71fe77b0705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 31 Mar 2021 10:09:37 +0200 Subject: [PATCH] fix typo in importing unittest.mock --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 995882b..24941ad 100644 --- a/test.py +++ b/test.py @@ -7,7 +7,7 @@ from tempfile import TemporaryFile try: - from unitest import mock + from unittest import mock except ImportError: import mock