Skip to content

Commit

Permalink
Fix drop_resources
Browse files Browse the repository at this point in the history
  • Loading branch information
steinitzu committed May 29, 2024
1 parent 8580ea4 commit 6a06449
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dlt/pipeline/drop.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ def drop_resources(
resources = list(resources)
if isinstance(sources, str):
sources = [sources]
sources = list(sources)
if sources is not None:
sources = list(sources)
if isinstance(state_paths, str):
state_paths = [state_paths]

Expand Down

0 comments on commit 6a06449

Please sign in to comment.