Skip to content

Commit 1f80b22

Browse files
authored
Split long import statement from .api into multiple lines using parentheses
1 parent b3ecf6c commit 1f80b22

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/app.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,16 @@
88
from rich.table import Table
99

1010
from .env import ACCESS_TOKEN, DRAFTS_FILE
11-
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
11+
from .api import (
12+
get_user_id,
13+
get_user_profile,
14+
get_user_posts,
15+
get_post_insights,
16+
fetch_all_posts,
17+
create_post,
18+
get_post_replies,
19+
get_post_replies_count,
20+
)
1221
from .utils import convert_to_locale
1322

1423
ACCESS_TOKEN = os.getenv("ACCESS_TOKEN")

0 commit comments

Comments
 (0)