[boardgames] Remove print statements
This commit is contained in:
@ -119,8 +119,6 @@ def push_scrobble_to_bgg(scrobble: "Scrobble", user: User) -> Optional[bool]:
|
|||||||
data=json.dumps(login_payload),
|
data=json.dumps(login_payload),
|
||||||
headers=headers,
|
headers=headers,
|
||||||
)
|
)
|
||||||
print(p)
|
|
||||||
|
|
||||||
players = []
|
players = []
|
||||||
if scrobble.log:
|
if scrobble.log:
|
||||||
for player in scrobble.log.get("players"):
|
for player in scrobble.log.get("players"):
|
||||||
@ -153,4 +151,3 @@ def push_scrobble_to_bgg(scrobble: "Scrobble", user: User) -> Optional[bool]:
|
|||||||
data=json.dumps(play_payload),
|
data=json.dumps(play_payload),
|
||||||
headers=headers,
|
headers=headers,
|
||||||
)
|
)
|
||||||
print(r)
|
|
||||||
|
|||||||
Reference in New Issue
Block a user