Skip to content

Commit

Permalink
feat: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrinson-rise8 committed Jan 3, 2025
1 parent 0ee096f commit e8cdc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/recordlinker/schemas/pii.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def all_features() -> typing.Iterator[str]:
if feature == FeatureAttribute.IDENTIFIER:
for identifier in IdentifierType:
yield f"{feature}:{identifier}"
FeatureEnum = enum.Enum("FeatureEnum", [(f, f) for f in all_features()])
FeatureEnum = enum.Enum("FeatureEnum", [(f, f) for f in list(all_features())])

class Sex(enum.Enum):
"""
Expand Down

0 comments on commit e8cdc16

Please sign in to comment.