Skip to content

Commit

Permalink
fix: missing default for urls under Source (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu authored May 29, 2021
1 parent 357b9ba commit a2e068d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape/types/contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class Checksum(SerializableType):

class Source(SerializableType):
checksum: Optional[Checksum] = None
urls: List[str]
urls: List[str] = []
content: Optional[str] = None
# TODO This was probably done for solidity, needs files cached to disk for compiling
# If processing a local project, code already exists, so no issue
Expand Down

0 comments on commit a2e068d

Please sign in to comment.