Skip to content

Commit

Permalink
Make flake8 happy for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrobenolt committed Sep 29, 2014
1 parent ae338e0 commit 76ffe3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion disqusapi/tests_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, expected, test_case, callable_obj=None,
self.obj_name = str(callable_obj)
else:
self.obj_name = None
if isinstance(expected_regex, basestring):
if isinstance(expected_regex, basestring): # NOQA
expected_regex = re.compile(expected_regex)
self.expected_regex = expected_regex

Expand Down

0 comments on commit 76ffe3b

Please sign in to comment.