Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaFaer committed Jul 2, 2024
1 parent 7d46a35 commit 56c7226
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/destinations/impl/destination/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def fingerprint(self) -> str:
"""
name = (
self.destination_callable
if isinstance(str, self.destination_callable)
if isinstance(self.destination_callable, str)
else self.destination_callable.__name__
)
return digest128(name)
Expand Down

0 comments on commit 56c7226

Please sign in to comment.