Skip to content

Instantly share code, notes, and snippets.

@gaganmanku96
Last active December 2, 2019 04:12
Show Gist options
  • Save gaganmanku96/41bc38c64a28a879c80ccb1f68a6575e to your computer and use it in GitHub Desktop.
Save gaganmanku96/41bc38c64a28a879c80ccb1f68a6575e to your computer and use it in GitHub Desktop.
def add(first_value: int, second_value: int) -> int:
return first_value + second value
@pzahemszky
Copy link

There's an unnecessary return in line 1 that results in a syntax error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment