From b880e20876fec670e11db8b42f754fbbbfd8055c Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 31 Jan 2023 15:41:11 +0100 Subject: [PATCH] [4.0.x] Fixed E501 flake8 error. --- tests/inspectdb/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/inspectdb/tests.py b/tests/inspectdb/tests.py index 51f0b82f9e..0ef37aa0a7 100644 --- a/tests/inspectdb/tests.py +++ b/tests/inspectdb/tests.py @@ -388,7 +388,8 @@ class InspectDBTestCase(TestCase): """ out = StringIO() with mock.patch( - "django.db.connection.introspection.data_types_reverse.base_data_types_reverse", + "django.db.connection.introspection.data_types_reverse." + "base_data_types_reverse", { "text": "myfields.TextField", "bigint": "BigIntegerField",