Skip to content

Commit 07a01d3

Browse files
fix
1 parent 1b4e38b commit 07a01d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Core/Utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def dataset_from_stats(stats, folder):
310310
# screenId is a concatenation of placeId and screenId, to make it unique pair
311311
PlaceAndScreenId = [x.split('/') for x in screenId]
312312

313-
blackList = set(stats.get('blacklist', []))
313+
blackList = stats.get('blacklist', [])
314314
known = set([tuple(x) for x in blackList])
315315
for screen_id_index, (place_id, screen_id) in enumerate(PlaceAndScreenId):
316316
place_id_index = placeId.index(place_id)

0 commit comments

Comments
 (0)