Skip to content

Commit 0681d0f

Browse files
committed
Removed unwanted prints...
1 parent 2935a34 commit 0681d0f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

labfis/main.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,11 @@ def format(self):
6262
for digit in su:
6363
if digit == "0":
6464
r += 1
65-
print("zero", r)
6665
elif digit == "9" and "1" in str(round(self.uncertainty,r)):
67-
print("yes", r)
6866
m = round(self.mean, r-1)
6967
u = round(self.uncertainty, r)
7068
return((m,u))
7169
elif digit != ".":
72-
print("Number")
7370
m = round(self.mean, r)
7471
u = round(self.uncertainty, r)
7572
return((m,u))

0 commit comments

Comments
 (0)