Get the complete path of the Python module. Returns: str: The complete path.
(self)
| 167 | |
| 168 | @cached_property |
| 169 | def python_complete_path(self) -> str: |
| 170 | """ |
| 171 | Get the complete path of the Python module. |
| 172 | |
| 173 | Returns: |
| 174 | str: The complete path. |
| 175 | """ |
| 176 | return f"{self.base_path}.{self.module}" |
| 177 | |
| 178 | @property |
| 179 | def disabled(self): |
nothing calls this directly
no outgoing calls
no test coverage detected