1 parent a917e4c commit 9d71714Copy full SHA for 9d71714
1 file changed
lib/fourmat/directives.py
@@ -54,7 +54,7 @@ def __str__(self) -> str:
54
at_sign = "@" if self.at_sign else ""
55
colon = ":" if self.colon else ""
56
prefix_params = ",".join(map(lambda x: f"'{x}" if isinstance(x, str) else str(x), self.params))
57
- return f"~{prefix_params}{at_sign}{colon}{self.kind}"
+ return f"~{prefix_params}{colon}{at_sign}{self.kind}"
58
59
60
@dataclass(eq=True)
0 commit comments