Skip to content
This repository has been archived by the owner on Mar 1, 2018. It is now read-only.

Commit

Permalink
Fix suggestion unique_id solution key
Browse files Browse the repository at this point in the history
  • Loading branch information
anaschwendler committed May 17, 2017
1 parent 044fce4 commit 1241f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rosie/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self, settings, adapter):
self.settings = settings
self.dataset = adapter.dataset
self.data_path = adapter.path
if (UNIQUE_IDS):
if self.settings.UNIQUE_IDS:
self.suspicions = self.dataset[self.settings.UNIQUE_IDS].copy()
else:
self.suspicions = self.dataset.copy()
Expand Down

0 comments on commit 1241f08

Please sign in to comment.