Skip to content

Commit

Permalink
Move encodings to a private submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 16, 2024
1 parent 362ad22 commit f848370
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions singer_sdk/_singerlib/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

from __future__ import annotations

from singer_sdk._singerlib.encoding import SingerWriter
from singer_sdk._singerlib.encoding.base import (
from singer_sdk._singerlib._encoding import SingerWriter
from singer_sdk._singerlib._encoding.base import (
ActivateVersionMessage,
Message,
RecordMessage,
Expand Down
2 changes: 1 addition & 1 deletion singer_sdk/io_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from __future__ import annotations

from singer_sdk._singerlib.encoding import * # noqa: F403
from singer_sdk._singerlib._encoding import * # noqa: F403

0 comments on commit f848370

Please sign in to comment.