Skip to content

Commit 9d71714

Browse files
committed
4MAT: Colons before arrobas
1 parent a917e4c commit 9d71714

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/fourmat/directives.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __str__(self) -> str:
5454
at_sign = "@" if self.at_sign else ""
5555
colon = ":" if self.colon else ""
5656
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}"
57+
return f"~{prefix_params}{colon}{at_sign}{self.kind}"
5858

5959

6060
@dataclass(eq=True)

0 commit comments

Comments
 (0)