We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83eac53 commit 8250818Copy full SHA for 8250818
scrapegraph-py/scrapegraph_py/models/smartscraper.py
@@ -49,6 +49,7 @@ class GetSmartScraperRequest(BaseModel):
49
@model_validator(mode="after")
50
def validate_request_id(self) -> "GetSmartScraperRequest":
51
try:
52
+ # Validate the request_id is a valid UUID
53
UUID(self.request_id)
54
except ValueError:
55
raise ValueError("request_id must be a valid UUID")
0 commit comments