Skip to content

Commit b967813

Browse files
authored
Merge pull request #30 from open-resources/remove-num-is-zero-log
remove num is zero log
2 parents 99cb4ab + 19ceafd commit b967813

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/problem_bank_helpers/problem_bank_helpers.py

-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ def roundp(*args,**kwargs):
214214
# sigfig.round doesn't like zero
215215
if abs(float(num_str)) == 0:
216216
result = num_str
217-
print("num is zero: " + result + "\n")
218217
else:
219218
result = sigfig.round(num_str,**kwargs)
220219

0 commit comments

Comments
 (0)