Skip to content

Commit 6cf3792

Browse files
Fix formatting issues
1 parent 2efeb9f commit 6cf3792

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

redditpythonapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from redditpythonapi.reddit import Reddit, ArticlesSortType
1+
from redditpythonapi.reddit import ArticlesSortType, Reddit

redditpythonapi/reddit.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ async def subreddit_articles(
6868
params = {"limit": limit}
6969
return await self._get_articles(url, params)
7070

71-
async def user_articles(self, user: str, limit: int, sort: ArticlesSortType) -> list[dict[str, Any]]:
71+
async def user_articles(
72+
self, user: str, limit: int, sort: ArticlesSortType
73+
) -> list[dict[str, Any]]:
7274
"""Get a list of Reddit articles from the given Reddit user
7375
7476
Args:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from distutils.core import setup
2-
32
from pathlib import Path
3+
44
this_directory = Path(__file__).parent
55
long_description = (this_directory / "README.md").read_text()
66

0 commit comments

Comments
 (0)