Skip to content

Commit

Permalink
Merge pull request #3 from TogetherCrew/feature/import-issue
Browse files Browse the repository at this point in the history
fix: import sets as base module
  • Loading branch information
cyri113 authored Sep 22, 2023
2 parents 258a19a + 54b9770 commit 46849ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bot/saga/extract_likes.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import logging

from bot.saga.saga import get_saga_instance
from bot.services.user_info import get_twitter_user
from bot.twitter import extract_and_save_liked_tweets, extract_and_save_liker_users
from bot.utils.mongo_connection import get_saga_db_location
from saga import get_saga_instance


def find_saga_and_fire_extract_likes(sagaId: str):
Expand Down
2 changes: 1 addition & 1 deletion bot/saga/extract_profiles.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import logging

from bot.saga.saga import get_saga_instance
from bot.services.user_info import get_twitter_user
from bot.twitter import extract_and_save_user_information
from bot.utils.mongo_connection import get_saga_db_location
from saga import get_saga_instance


def find_saga_and_fire_extract_profiles(sagaId: str):
Expand Down
2 changes: 1 addition & 1 deletion bot/saga/extract_tweets.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import logging

from bot.saga.saga import get_saga_instance
from bot.twitter import extract_and_save_tweets
from bot.utils.mongo_connection import get_saga_db_location
from saga import get_saga_instance


def find_saga_and_fire_extract_tweets(sagaId: str):
Expand Down

0 comments on commit 46849ef

Please sign in to comment.