Removed debug print statement

This commit is contained in:
Yarne Coppens 2024-08-01 09:52:34 +02:00
parent 7985fe0bbc
commit 5f05e6bf82

View file

@ -113,8 +113,6 @@ def get_user_owned_collection() -> list[BoardGame]:
url = 'https://boardgamegeek.com/xmlapi2/collection?username={}&own=1&stats=1&excludesubtype=boardgameexpansion&showprivate=1&version=1'.format(auth_manager.username)
collection_xml = url_to_xml_object(url)
print(collection_xml.tag)
owned_collection_list: list[BoardGame] = []
for boardgame_item in collection_xml: