diff options
Diffstat (limited to 'ExampleSubmission/example.py')
-rw-r--r-- | ExampleSubmission/example.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ExampleSubmission/example.py b/ExampleSubmission/example.py index 0cf7cd7..07f21d4 100644 --- a/ExampleSubmission/example.py +++ b/ExampleSubmission/example.py @@ -25,7 +25,9 @@ class Application(tk.Tk): """
return "%s %s" % (arg_1, arg_2)
+ # add
def add(self, num1:int, num2:int) -> int:
+ # add
"""Adds two numbers together and returns the output
Args:
|