aboutsummaryrefslogtreecommitdiffstats
path: root/csci1913
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-09-23 14:47:27 -0500
committerRossTheRoss <msattr@gmail.com>2019-09-23 14:47:27 -0500
commit6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b (patch)
tree6cc64ec7aa6409449313d2bade9955a8afcfa2fc /csci1913
parentE (diff)
downloadhomework-6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b.tar
homework-6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b.tar.gz
homework-6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b.tar.bz2
homework-6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b.tar.lz
homework-6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b.tar.xz
homework-6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b.tar.zst
homework-6c38e0ac3622e452e953a1f1eda62fdf62b7ce2b.zip
Fix an oopsie
Diffstat (limited to 'csci1913')
-rw-r--r--csci1913/lab1/lab2_strap012.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/csci1913/lab1/lab2_strap012.py b/csci1913/lab1/lab2_strap012.py
index 1ff1a28..7fc6ff3 100644
--- a/csci1913/lab1/lab2_strap012.py
+++ b/csci1913/lab1/lab2_strap012.py
@@ -24,7 +24,7 @@ class Zillion:
newList=self.List
newList[len(self.List)-1] += 1
if newList[len(self.List)-1]>=10:
-
+ return None
def isZero(self):
for p in range (0,len(self.List)-1):
if self.List[p] is not 0 or not '0':