Skip to content

Commit

Permalink
Fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 21, 2021
1 parent 0e1864e commit a093e4d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions emoji_strings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@

class IncrementalDecoder(codecs.BufferedIncrementalDecoder):

def _buffer_decode( # pragma: no cover
self,
input, # noqa: A002 # pylint: disable=redefined-builtin
errors,
final,
):
def _buffer_decode(
self,
input, # noqa: A002 # pylint: disable=redefined-builtin
errors,
final,
): # pragma: no cover

if final:
return decode(input, errors)
Expand Down

0 comments on commit a093e4d

Please sign in to comment.