diff --git a/singer_sdk/mapper.py b/singer_sdk/mapper.py index e608d8175c..9855d88e65 100644 --- a/singer_sdk/mapper.py +++ b/singer_sdk/mapper.py @@ -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 @@ -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,