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
This is almost certainly closely related to #220, but when an f-string contains two adjacent replacement fields (e.g. f"{var1}{var2}") then snakefmt will insert a space between them (i.e. f"{var1} {var2}").
Since in general filenames are sensitive to having extra characters inserted, this means that a working rule is broken by this change.
This occurs with Python 3.12 but not Python 3.11.
The text was updated successfully, but these errors were encountered:
This is almost certainly closely related to #220, but when an
f
-string contains two adjacent replacement fields (e.g.f"{var1}{var2}"
) thensnakefmt
will insert a space between them (i.e.f"{var1} {var2}"
).Since in general filenames are sensitive to having extra characters inserted, this means that a working rule is broken by this change.
This occurs with Python 3.12 but not Python 3.11.
The text was updated successfully, but these errors were encountered: