Skip to content

Commit da87d68

Browse files
committed
🔧 refactor(argparse_typing.py): replace AnyHttpUrl type with str for url field to allow non-http urls
1 parent 26c3dd0 commit da87d68

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

‎convex_api/tool/command/argparse_typing.py‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
)
1111

1212
from pydantic import (
13-
AnyHttpUrl,
1413
BaseModel,
1514
Field
1615
)
@@ -35,4 +34,4 @@ class BaseArgs(BaseModel):
3534
keywords: Union[None, str]
3635
debug: bool = False
3736
output_json: bool = Field(alias='json', default=False)
38-
url: AnyHttpUrl
37+
url: str

0 commit comments

Comments
 (0)