Skip to content

Commit

Permalink
Remove bad NoneType usage
Browse files Browse the repository at this point in the history
  • Loading branch information
axnsan12 committed Dec 20, 2018
1 parent 494d422 commit 5418415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testproj/testproj/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 5418415

Please sign in to comment.