Skip to content

Commit 8af05a9

Browse files
committed
fix(robot): use explicit class reference for super() in VariablesDoc to allow slots
1 parent 428226a commit 8af05a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/robot/src/robotcode/robot/diagnostics/library_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,7 @@ def to_markdown(
12601260
only_doc: bool = True,
12611261
header_level: int = 2,
12621262
) -> str:
1263-
result = super().to_markdown(add_signature, only_doc, header_level)
1263+
result = super(VariablesDoc, self).to_markdown(add_signature, only_doc, header_level)
12641264

12651265
if self.variables:
12661266
result += "\n---\n\n"

0 commit comments

Comments
 (0)