Remove bad NoneType usage

This commit is contained in:
Cristi Vîjdea
2018-12-21 01:39:29 +02:00
parent 494d422bf4
commit 5418415300
+1 -1
View File
@@ -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)