You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Triple quoted f-strings seem to break in rules, both when using run and shell.
Below are two minimal examples. Adding braces to the string does not alter the behavior.
run before:
rule test:
run:
shell(f"""shell stuff""")
run after:
rule test:
run:
shell(f """shell stuff""" )
shell before:
rule someshellrule:
shell:
f"""shell stuff"""
shell after:
rule somerunrule:
shell:
f """shell stuff"""
The text was updated successfully, but these errors were encountered:
Couldn't wait to use this!
Conda install, version 0.1.0
Triple quoted f-strings seem to break in rules, both when using
run
andshell
.Below are two minimal examples. Adding braces to the string does not alter the behavior.
run
before:run
after:shell
before:shell
after:The text was updated successfully, but these errors were encountered: