Remove print statements.
This commit is contained in:
@@ -54,7 +54,6 @@ def total_document_per_month():
|
||||
|
||||
for month in range(1, datetime.date.today().month + 1):
|
||||
next_month = month + 1
|
||||
print month
|
||||
|
||||
if next_month == 12:
|
||||
next_month = 1
|
||||
@@ -80,7 +79,6 @@ def total_document_version_per_month():
|
||||
|
||||
for month in range(1, datetime.date.today().month + 1):
|
||||
next_month = month + 1
|
||||
print month
|
||||
|
||||
if next_month == 12:
|
||||
next_month = 1
|
||||
@@ -106,7 +104,6 @@ def total_document_page_per_month():
|
||||
|
||||
for month in range(1, datetime.date.today().month + 1):
|
||||
next_month = month + 1
|
||||
print month
|
||||
|
||||
if next_month == 12:
|
||||
next_month = 1
|
||||
|
||||
Reference in New Issue
Block a user