(dir: str)
| 144 | |
| 145 | |
| 146 | def create_dir(dir: str): |
| 147 | try: os.mkdir(dir) |
| 148 | except Exception as e: pass |
| 149 | finally: |
| 150 | if not os.path.isdir(dir): |
| 151 | raise FileNotFoundError(f'Can not create directory at {dir}') |
| 152 | |
| 153 | |
| 154 | def compare_cosine_similarity_between_results( |
no outgoing calls
no test coverage detected