Skip to content

Commit b4b1dbe

Browse files
committed
add parentheses
1 parent a398912 commit b4b1dbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdoc/doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ def _var_annotations(self) -> dict[str, type]:
637637
for attr, unresolved_annotation in dynamic_annotations.items():
638638
cls_annotations[attr] = unresolved_annotation
639639
cls_fullname = (
640-
_safe_getattr(cls, "__module__", "") or "" + "." + cls.__qualname__
640+
(_safe_getattr(cls, "__module__", "") or "") + "." + cls.__qualname__
641641
).lstrip(".")
642642

643643
new_annotations = {

0 commit comments

Comments
 (0)