Skip to content

Commit 0e02de1

Browse files
committed
Make Account.github_url an optional property
Signed-off-by: Mattt Zmuda <[email protected]>
1 parent ddc100e commit 0e02de1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

replicate/account.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict, Literal
1+
from typing import Any, Dict, Literal, Optional
22

33
from replicate.resource import Namespace, Resource
44

@@ -17,7 +17,7 @@ class Account(Resource):
1717
name: str
1818
"""The name of the account."""
1919

20-
github_url: str
20+
github_url: Optional[str]
2121
"""The GitHub URL of the account."""
2222

2323

0 commit comments

Comments
 (0)