Skip to content

Commit 12681fb

Browse files
committed
Pass keyword arguments instead of unpacking a dictionary.
1 parent 93366db commit 12681fb

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

mkdocstrings_handlers/vba/_handler.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,10 @@ def render(
154154
)
155155

156156
return template.render(
157-
**{
158-
"config": final_config,
159-
"module": data,
160-
"heading_level": heading_level,
161-
"root": True,
162-
},
157+
config=final_config,
158+
module=data,
159+
heading_level=heading_level,
160+
root=True,
163161
)
164162

165163
def update_env(self, md: Markdown, config: Dict[Any, Any]) -> None:

0 commit comments

Comments
 (0)