Skip to content

Commit 394b74b

Browse files
style(config): remove redundant parentheses in boolean expression
1 parent d077af5 commit 394b74b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

btdt/scripts/sync-configs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def scan_fonts(existing_labels: dict[str, str], warnings: WarningCollector) -> d
329329
for path in list_source_css(FONT_DIR):
330330
slug = path.stem
331331
content = read_text(path)
332-
is_default = (slug == "default")
332+
is_default = slug == "default"
333333

334334
# Only warn about missing imports/vars if it's NOT the default font
335335
# or if it IS the default but you've started adding some declarations.

0 commit comments

Comments
 (0)