aboutsummaryrefslogtreecommitdiffstats
path: root/csci1913/Python/lab3_strap012.py
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2019-09-29 21:30:41 -0500
committerRossTheRoss <mstrapp@protonmail.com>2019-09-29 21:30:41 -0500
commit6eb086dbfc30c92c9a9ae5d7792d206dc4075900 (patch)
tree4045b3bf4f51837bf020f6a5f9941df898f02982 /csci1913/Python/lab3_strap012.py
parentFinish Lab because I stoopid (diff)
downloadhomework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar
homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.gz
homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.bz2
homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.lz
homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.xz
homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.tar.zst
homework-6eb086dbfc30c92c9a9ae5d7792d206dc4075900.zip
Make code look less bad
Diffstat (limited to '')
-rw-r--r--csci1913/Python/lab3_strap012.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/csci1913/Python/lab3_strap012.py b/csci1913/Python/lab3_strap012.py
index bc64d2a..f9df918 100644
--- a/csci1913/Python/lab3_strap012.py
+++ b/csci1913/Python/lab3_strap012.py
@@ -7,7 +7,8 @@ def Reduce(F,S):
def returnGreater(a,b):
if a > b:
return a
- return b
+ else:
+ return b
#Implementation from Lab
def Sort(T):