Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions replicate/account.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Dict, Literal
from typing import Any, Dict, Literal, Optional

from replicate.resource import Namespace, Resource

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

github_url: str
github_url: Optional[str]
"""The GitHub URL of the account."""


Expand Down
Loading