Unset default scopeType for seeds so they inherit parent scopeType by default (#952)

This commit is contained in:
Tessa Walsh 2023-07-06 18:03:05 -04:00 committed by GitHub
parent 8a240ad044
commit bf1e817da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,7 @@ class Seed(BaseModel):
"""Crawl seed"""
url: HttpUrl
scopeType: Optional[ScopeType] = ScopeType.PREFIX
scopeType: Optional[ScopeType]
include: Union[str, List[str], None]
exclude: Union[str, List[str], None]