120 + if not isinstance(force, bool): 121 + raise TypeError(f'force must be a boolean, but got {type(force)}') 122 + 123 + # raise the error ahead of time 124 + if not (name is None or isinstance(name, str) 125 + or is_list_of(name, str)): 126 + raise TypeErr...