Skip to content

Commit

Permalink
Use tuple instead of list
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans committed Aug 30, 2024
1 parent 8261acd commit b8ac188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djlint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def main(
# cannot use gitignore for stdin paths.
config.use_gitignore = False

file_list = get_src([Path(temp_file.name)], config)
file_list = get_src((Path(temp_file.name),), config)

else:
file_list = get_src((Path(x) for x in src), config)
Expand Down

0 comments on commit b8ac188

Please sign in to comment.