Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 1, 2023
1 parent 86fac60 commit 8bd985c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions singer_sdk/mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
import abc
import copy
import datetime
import fnmatch
import hashlib
import logging
import typing as t
import fnmatch

from singer_sdk.exceptions import MapExpressionError, StreamMapConfigError
from singer_sdk.helpers import _simpleeval as simpleeval
Expand Down Expand Up @@ -725,7 +725,9 @@ def register_raw_stream_schema( # noqa: PLR0912, C901
key_properties=key_properties,
flattening_options=self.flattening_options,
)
elif stream_def is None or (isinstance(stream_def, str) and stream_def == NULL_STRING):
elif stream_def is None or (
isinstance(stream_def, str) and stream_def == NULL_STRING
):
mapper = RemoveRecordTransform(
stream_alias=stream_alias,
raw_schema=schema,
Expand Down

0 comments on commit 8bd985c

Please sign in to comment.