Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anki-code authored Jun 5, 2024
1 parent d88b738 commit 37aa82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xontrib/pipeliner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def _preset_fromlist(line, num, args):
if args:
n = int(args[0])
return lst[n] if n >= 0 and n < len(lst) else ""
return lst[0]
return str(lst[0])
else:
return ""

Expand Down

0 comments on commit 37aa82f

Please sign in to comment.