From 5f05e6bf82464c0ac66f6595fb3bdb69a9f4d404 Mon Sep 17 00:00:00 2001 From: Yarne Coppens Date: Thu, 1 Aug 2024 09:52:34 +0200 Subject: [PATCH] Removed debug print statement --- bgg_connection.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bgg_connection.py b/bgg_connection.py index 4ed9364..c15c284 100644 --- a/bgg_connection.py +++ b/bgg_connection.py @@ -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: