Skip to content

Commit c14b827

Browse files
committed
chore: tiny bugfix
1 parent 9ee80f4 commit c14b827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aeon/dj_pipeline/utils/tracking_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def get_region_value(region_name):
8888
# 1) setup data for processing
8989
df = df.sort_index()
9090
ids = df["identity_name"].unique()
91-
if len(ids) == 2:
91+
if len(ids) != 2:
9292
raise ValueError(
9393
"Expected exactly two identities, found: {}".format(ids)
9494
)

0 commit comments

Comments
 (0)