Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tabatkins committed Jan 24, 2024
1 parent 5794638 commit c20becf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bikeshed/stylescript/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit c20becf

Please sign in to comment.