Remove bad NoneType usage

master
Cristi Vîjdea 2018-12-21 01:39:29 +02:00
parent 494d422bf4
commit 5418415300
1 changed files with 1 additions and 1 deletions

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)