Skip to content

Commit

Permalink
add pragma no cover for Py3
Browse files Browse the repository at this point in the history
  • Loading branch information
thefab committed Sep 4, 2014
1 parent 4e66004 commit e977c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tornadis/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def format_args_in_redis_protocol(*args):
elif isinstance(arg, six.string_types):
# it's a basestring in Python2 => nothing to do
pass
elif isinstance(arg, six.binary_type):
elif isinstance(arg, six.binary_type): # pragma: no cover
# it's a raw bytes string in Python3 => nothing to do
pass
elif isinstance(arg, six.integer_types):
Expand Down

0 comments on commit e977c4c

Please sign in to comment.