Skip to content

Commit 5578484

Browse files
committed
Fix mypy
1 parent 04046f6 commit 5578484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def generate(self) -> Iterable[Partition]:
9999
yield self._partition_factory.create(stream_slice)
100100

101101
@staticmethod
102-
def _make_hashable(obj: Any) -> Hashable:
102+
def _make_hashable(obj: Any) -> Any:
103103
if isinstance(obj, dict):
104104
return frozenset((k, StreamSlicerPartitionGenerator._make_hashable(v)) for k, v in obj.items())
105105
if isinstance(obj, list):

0 commit comments

Comments
 (0)