change most double quotes to single quotes

This commit is contained in:
2026-04-12 21:56:03 +03:00
parent f31752797e
commit 5d53a0d179
5 changed files with 94 additions and 94 deletions

View File

@@ -70,8 +70,8 @@ class InfoboxKind(IntEnum):
ERROR = 3
InfoboxHTMLClass = {
InfoboxKind.INFO: "",
InfoboxKind.LOCK: "warn",
InfoboxKind.WARN: "warn",
InfoboxKind.ERROR: "critical",
InfoboxKind.INFO: '',
InfoboxKind.LOCK: 'warn',
InfoboxKind.WARN: 'warn',
InfoboxKind.ERROR: 'critical',
}