Skip to content

Commit 3c5c871

Browse files
committed
Remove remaining print commands, in favor of logging
1 parent 9edc216 commit 3c5c871

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

backend.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,10 @@ def headerGet(type, header=None):
196196
def applyCasing(type, text):
197197
global catCasing, subCasing
198198
if type == "cat":
199-
print("catCasing: "+ catCasing)
200199
if catCasing == "Capitalize": return text.title()
201200
elif catCasing == "UPPER": return text.upper()
202201
elif catCasing == "lower": return text.lower()
203202
elif type == "sub":
204-
print("subCasing: "+ subCasing)
205203
if subCasing == "Capitalize": return text.title()
206204
elif subCasing == "UPPER": return text.upper()
207205
elif subCasing == "lower": return text.lower()

0 commit comments

Comments
 (0)