pyvista.core._validation.check.check_string#
- check_string(obj: str, /, *, allow_subclass: bool = True, name: str = 'Object') None [source]#
Check if an object is an instance of
str
.- Parameters:
- Raises:
TypeError
If input is not an instance of
str
.
Examples
Check if an object is a string.
>>> from pyvista import _validation >>> _validation.check_string('eggs')