Skip to content

Commit d973580

Browse files
authored
Fix import from src.api and src.utils in main.py
1 parent 4cb7240 commit d973580

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
from rich.table import Table
77
from datetime import datetime, timedelta, timezone
88
from dotenv import load_dotenv
9-
from api import get_user_id, get_user_profile, get_user_posts, get_post_insights, fetch_all_posts, create_post, get_post_replies, get_post_replies_count
10-
from utils import convert_to_locale
9+
10+
from src.api import get_user_id, get_user_profile, get_user_posts, get_post_insights, fetch_all_posts, create_post, get_post_replies, get_post_replies_count
11+
from src.utils import convert_to_locale
1112

1213
app = typer.Typer()
1314
console = Console()

0 commit comments

Comments
 (0)