From c20becf03fd776947976073d499f478a613359eb Mon Sep 17 00:00:00 2001 From: Tab Atkins-Bittner Date: Wed, 24 Jan 2024 12:30:35 -0800 Subject: [PATCH] lint --- bikeshed/stylescript/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bikeshed/stylescript/manager.py b/bikeshed/stylescript/manager.py index 6ed2b31d78..0450de7a89 100644 --- a/bikeshed/stylescript/manager.py +++ b/bikeshed/stylescript/manager.py @@ -144,7 +144,7 @@ def addWpt(self, paths: list[str] | None) -> None: if not script.data: script.data = ("wptData", {"paths": []}) if paths: - script.data[1]["paths"] = list(sorted(set(script.data[1]["paths"] + paths))) + script.data[1]["paths"] = sorted(set(script.data[1]["paths"] + paths)) def addDfnPanels(self) -> t.JSONT: script = self._addJS("dfn-panel", "dfnpanels")