We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12003c0 commit 355ec35Copy full SHA for 355ec35
1 file changed
codetide/core/html.py
@@ -74,7 +74,7 @@ def block_div(name, label, cls, onclick=None, block_id=None):
74
return div
75
76
def _render_node(node, container_class, parent_id=None):
77
- nonlocal html_lines
+ nonlocal html_lines # noqa: F824
78
items = [(k, v) for k, v in node.items() if not k.startswith("_")]
79
items.sort(key=lambda x: (x[1].get("_type") != "directory", x[0]))
80
0 commit comments