Removed debug print statement
This commit is contained in:
parent
7985fe0bbc
commit
5f05e6bf82
1 changed files with 0 additions and 2 deletions
|
|
@ -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)
|
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)
|
collection_xml = url_to_xml_object(url)
|
||||||
|
|
||||||
print(collection_xml.tag)
|
|
||||||
|
|
||||||
owned_collection_list: list[BoardGame] = []
|
owned_collection_list: list[BoardGame] = []
|
||||||
|
|
||||||
for boardgame_item in collection_xml:
|
for boardgame_item in collection_xml:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue