Legacy GetDepend function for backward compatibility. Args: depend: Dependency to check Returns: True if dependency is satisfied
(depend: Any)
| 96 | |
| 97 | |
| 98 | def GetDepend(depend: Any) -> bool: |
| 99 | """ |
| 100 | Legacy GetDepend function for backward compatibility. |
| 101 | |
| 102 | Args: |
| 103 | depend: Dependency to check |
| 104 | |
| 105 | Returns: |
| 106 | True if dependency is satisfied |
| 107 | """ |
| 108 | if _context: |
| 109 | return _context.get_dependency(depend) |
| 110 | return False |
| 111 | |
| 112 | |
| 113 | def GetCurrentDir() -> str: |
nothing calls this directly
no test coverage detected