Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehgrantsgov committed Dec 6, 2024
1 parent 891c41f commit 678937a
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions api/src/db/models/lookup_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,19 +251,6 @@ class LkExternalUserType(LookupTable, TimestampMixin):
def from_lookup(cls, lookup: Lookup) -> "LkExternalUserType":
return LkExternalUserType(
external_user_type_id=lookup.lookup_val, description=lookup.get_description()


@LookupRegistry.register_lookup(EXTRACT_TYPE_CONFIG)
class LkExtractType(LookupTable, TimestampMixin):
__tablename__ = "lk_extract_type"

extract_type_id: Mapped[int] = mapped_column(primary_key=True)
description: Mapped[str]

@classmethod
def from_lookup(cls, lookup: Lookup) -> "LkExtractType":
return LkExtractType(
extract_type_id=lookup.lookup_val, description=lookup.get_description()
)


Expand Down

0 comments on commit 678937a

Please sign in to comment.