Skip to content

Commit

Permalink
Fix typo in LocalResource constructor types (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
nazywam authored Jan 14, 2021
1 parent cd73998 commit 3b05ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion karton/core/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class LocalResource(ResourceBase):
def __init__(
self,
name: str,
content: Optional[bytes] = None,
content: Optional[Union[str, bytes]] = None,
path: Optional[str] = None,
bucket: Optional[str] = None,
metadata: Optional[Dict[str, Any]] = None,
Expand Down

0 comments on commit 3b05ead

Please sign in to comment.