From 82c7d013fb341ec5f83ec5943c94b2cf319bbb6a Mon Sep 17 00:00:00 2001 From: luzpaz Date: Tue, 17 Dec 2024 07:13:41 -0500 Subject: [PATCH] BIM: add docstrings to Arch.py Closes #18560 --- src/Mod/BIM/Arch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/BIM/Arch.py b/src/Mod/BIM/Arch.py index e9537176d8a8..02af3dd92040 100644 --- a/src/Mod/BIM/Arch.py +++ b/src/Mod/BIM/Arch.py @@ -798,6 +798,7 @@ def makeStairs(baseobj=None,length=None,width=None,height=None,steps=None,name=N label = name if name else translate("Arch","Stairs") def setProperty(obj,length,width,height,steps): + """setProperty(obj,length,width,height,steps): sets up the basic properties for this stair""" if length: obj.Length = length else: @@ -890,6 +891,7 @@ def makeRailing(stairs): import ArchPipe def makeRailingLorR(stairs,side="L"): + """makeRailingLorR(stairs,side="L"): Creates a railing on the given side of the stairs, L or R""" for stair in reversed(stairs): if side == "L": outlineLR = stair.OutlineLeft