()
| 38 | return matches[0] if matches else None |
| 39 | |
| 40 | def find_free_port(): |
| 41 | with socketserver.TCPServer(("localhost", 0), None) as s: |
| 42 | free_port = s.server_address[1] |
| 43 | return free_port |
| 44 | |
| 45 | def check_local_or_remote(path: str): |
| 46 | # Check if link is a valid folder path |
nothing calls this directly
no outgoing calls
no test coverage detected