Join module ids, accounting for a possibly empty parent.
(parent: str, child: str)
| 240 | |
| 241 | |
| 242 | def module_join(parent: str, child: str) -> str: |
| 243 | """Join module ids, accounting for a possibly empty parent.""" |
| 244 | if parent: |
| 245 | return parent + "." + child |
| 246 | return child |
| 247 | |
| 248 | |
| 249 | def strip_py(arg: str) -> str | None: |
no outgoing calls
no test coverage detected
searching dependent graphs…