From 550cb3a365dee4edfdd1563224d5304de2a57fda Mon Sep 17 00:00:00 2001 From: Mads Jensen Date: Thu, 9 Mar 2017 16:17:41 +0100 Subject: Fixed #27818 -- Replaced try/except/pass with contextlib.suppress(). --- tests/postgres_tests/test_json.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tests/postgres_tests/test_json.py') diff --git a/tests/postgres_tests/test_json.py b/tests/postgres_tests/test_json.py index 2506fc36d6..20650ae95b 100644 --- a/tests/postgres_tests/test_json.py +++ b/tests/postgres_tests/test_json.py @@ -1,5 +1,6 @@ import datetime import uuid +from contextlib import suppress from decimal import Decimal from django.core import exceptions, serializers @@ -11,11 +12,9 @@ from django.utils.html import escape from . import PostgreSQLTestCase from .models import JSONModel -try: +with suppress(ImportError): from django.contrib.postgres import forms from django.contrib.postgres.fields import JSONField -except ImportError: - pass @skipUnlessDBFeature('has_jsonb_datatype') -- cgit v1.3