We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b4e38b commit 07a01d3Copy full SHA for 07a01d3
Core/Utils.py
@@ -310,7 +310,7 @@ def dataset_from_stats(stats, folder):
310
# screenId is a concatenation of placeId and screenId, to make it unique pair
311
PlaceAndScreenId = [x.split('/') for x in screenId]
312
313
- blackList = set(stats.get('blacklist', []))
+ blackList = stats.get('blacklist', [])
314
known = set([tuple(x) for x in blackList])
315
for screen_id_index, (place_id, screen_id) in enumerate(PlaceAndScreenId):
316
place_id_index = placeId.index(place_id)
0 commit comments