Skip to content

Commit

Permalink
fix: missing type hint
Browse files Browse the repository at this point in the history
Co-authored-by: antazoey <[email protected]>
  • Loading branch information
mikeshultz and antazoey authored Mar 19, 2024
1 parent 8a063e4 commit b6af43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ape_vyper/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def abi_to_type(iface: Dict[str, Any]) -> Optional[ABI]:
return None


def generate_interface(abi: Union[List[Dict[str, Any]], List[ABI]], iface_name) -> str:
def generate_interface(abi: Union[List[Dict[str, Any]], List[ABI]], iface_name: str) -> str:
"""
Generate a Vyper interface source code from an ABI spec
Expand Down

0 comments on commit b6af43c

Please sign in to comment.