Skip to content

Commit 099315c

Browse files
committed
fix docstring for validate_hinted_attributes
1 parent 1f90263 commit 099315c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fastcs/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ def numpy_to_fastcs_datatype(np_type) -> DataType:
3232

3333

3434
def validate_hinted_attributes(controller: BaseController):
35-
"""Validates that type-hinted attributes exist in the controller, and are accessible
36-
via the dot accessor, from the attributes dictionary and with the right datatype.
35+
"""Validates that type-hinted attributes in the controller and all subcontrollers
36+
exist with the right datatype and access mode.
3737
"""
3838
for subcontroller in controller.get_sub_controllers().values():
3939
validate_hinted_attributes(subcontroller)

0 commit comments

Comments
 (0)