(file_name:str)
| 12 | |
| 13 | @staticmethod |
| 14 | def check_file(file_name:str)->bool: |
| 15 | if not os.path.exists(file_name) or not os.path.isfile(file_name): |
| 16 | return False |
| 17 | |
| 18 | return True |
| 19 | |
| 20 | @staticmethod |
| 21 | def search_text_array(text:str,list:list[str]): |
no outgoing calls
no test coverage detected