in dagify/converter/yaml_validator/custom_validator.py [0:0]
def _is_valid(self, value):
try:
response = requests.get(value)
return response.status_code == 200
except requests.exceptions.RequestException as e:
print(f"Error checking URL: {e}")