Add missing comma to tuple

This commit is contained in:
Mark Grassi 2023-02-19 17:13:15 -05:00
parent 14e01b5d73
commit 2be41315e7

View file

@ -27,7 +27,7 @@ trans_modifiers = {
targets = ("", "target", "target2")
# null_target uses "_" instead of "" because "" gets skipped in some for loops. Replace with "" when actually using the value.
null_target = ("_")
null_target = ("_",)
named_trans = {
"p": targets,