(str1: str, *args: str)
| 287 | |
| 288 | |
| 289 | def equals_ignore_case(str1: str, *args: str) -> bool: |
| 290 | if str1 is None: |
| 291 | return None in args |
| 292 | for arg in args: |
| 293 | if arg is None: |
| 294 | continue |
| 295 | if str1.casefold() == arg.casefold(): |
| 296 | return True |
| 297 | return False |
no outgoing calls
no test coverage detected