Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit 337feda

Browse files
committed
Clean: Remove debug print statements.
1 parent bc54722 commit 337feda

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rsmanage/rsmanage.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,10 +832,8 @@ def studentinfo(config, student):
832832
from auth_user join user_courses ON user_courses.user_id = auth_user.id
833833
join courses on courses.id = user_courses.course_id where username = '{student}'"""
834834
)
835-
print(f"res = {res}")
836835
# fetchone fetches the first row without closing the cursor.
837836
first = res.fetchone()
838-
print(student)
839837
print("id\tFirst\tLast\temail")
840838
print("\t".join(str(x) for x in first[:4]))
841839
print("")

0 commit comments

Comments
 (0)