mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Remove print statements
This commit is contained in:
parent
9ec0044458
commit
2898917b64
@ -119,7 +119,6 @@ class HelperUsers:
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def get_user_total():
|
def get_user_total():
|
||||||
count = Users.select().where(Users.username != "system").count()
|
count = Users.select().where(Users.username != "system").count()
|
||||||
print(count)
|
|
||||||
return count
|
return count
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
@ -261,8 +260,6 @@ class HelperUsers:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def update_user(user_id, up_data=None):
|
def update_user(user_id, up_data=None):
|
||||||
for item in up_data:
|
|
||||||
print(item, type(item))
|
|
||||||
if up_data is None:
|
if up_data is None:
|
||||||
up_data = {}
|
up_data = {}
|
||||||
if up_data:
|
if up_data:
|
||||||
|
Loading…
Reference in New Issue
Block a user