Skip to content

Commit

Permalink
Disable niji talents scraping
Browse files Browse the repository at this point in the history
  • Loading branch information
Steeven9 committed Mar 5, 2024
1 parent 7d45146 commit 418b4e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Tweet(BaseModel):
ACTIVE_TALENTS_HOLO.sort(key=itemgetter("agency", "generationId", "name"))
ACTIVE_TALENTS_NIJI.sort(key=itemgetter("generationId", "name"))
ACTIVE_TALENTS_INDIE.sort(key=itemgetter("name"))
ACTIVE_TALENTS_LIST = ACTIVE_TALENTS_HOLO + ACTIVE_TALENTS_NIJI + ACTIVE_TALENTS_INDIE
ACTIVE_TALENTS_LIST = ACTIVE_TALENTS_HOLO + ACTIVE_TALENTS_INDIE # + ACTIVE_TALENTS_NIJI

if CONNECTION_STRING == None:
raise ValueError("Missing connection string!")
Expand Down

0 comments on commit 418b4e7

Please sign in to comment.