Skip to content

Commit

Permalink
Fix type attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 17, 2024
1 parent 8d32686 commit e04f827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/_singerlib/encoding/_msgspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def dec_hook(type: type, obj: t.Any) -> t.Any: # noqa: ARG001, A002, ANN401
decoder = msgspec.json.Decoder(dec_hook=dec_hook, float_hook=decimal.Decimal)


class MsgSpecReader(GenericSingerReader[str]):
class MsgSpecReader(GenericSingerReader[bytes]):
"""Base class for all plugins reading Singer messages as strings from stdin."""

default_input = sys.stdin.buffer
Expand Down

0 comments on commit e04f827

Please sign in to comment.