From 7037dc57245c7ed0b9ef7e4a3cded963d0644b44 Mon Sep 17 00:00:00 2001 From: Yoong Kang Lim Date: Sat, 23 Jan 2016 23:13:09 +1100 Subject: [PATCH] Removed unnecessary import in django/urls/base.py. --- django/urls/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/urls/base.py b/django/urls/base.py index a9a2dff1e6..ea68f99cea 100644 --- a/django/urls/base.py +++ b/django/urls/base.py @@ -153,7 +153,6 @@ def is_valid_path(path, urlconf=None): False otherwise. This is a convenience method to make working with "is this a match?" cases easier, avoiding try...except blocks. """ - from django.urls.base import resolve try: resolve(path, urlconf) return True