From 54184153001ca39e77ab684088610791495409bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristi=20V=C3=AEjdea?= Date: Fri, 21 Dec 2018 01:39:29 +0200 Subject: [PATCH] Remove bad NoneType usage --- testproj/testproj/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testproj/testproj/util.py b/testproj/testproj/util.py index 7128148..8a9c3a3 100644 --- a/testproj/testproj/util.py +++ b/testproj/testproj/util.py @@ -13,5 +13,5 @@ def full_url(absolute_path): return "http://test.local:8002/no-reverse-match/" -full_url_lazy = lazy(full_url, str, type(None)) +full_url_lazy = lazy(full_url, str) static_lazy = lazy(static, str)