Returns the Python path of the class. Returns: str: The Python path.
(cls)
| 1169 | |
| 1170 | @classproperty |
| 1171 | def python_path(cls) -> str: |
| 1172 | """ |
| 1173 | Returns the Python path of the class. |
| 1174 | |
| 1175 | Returns: |
| 1176 | str: The Python path. |
| 1177 | """ |
| 1178 | return f"{cls.__module__}.{cls.__name__}" |
| 1179 | |
| 1180 | |
| 1181 | class AbstractConfig(ListCachable): |
nothing calls this directly
no outgoing calls
no test coverage detected