File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,9 @@ Third argument specifies sort type.
101101Following sort types are supported:
102102``` python
103103SortType.HOT
104- SortType.TOP
105104SortType.NEW
105+ SortType.RISING
106+ SortType.TOP
106107SortType.CONTROVERSIAL
107108```
108109
@@ -122,8 +123,9 @@ General usage is the same as for subreddits.
122123Sort types are available in ` SortType ` enum. These sort types are available:
123124``` python
124125SortType.HOT
125- SortType.TOP
126126SortType.NEW
127+ SortType.RISING
128+ SortType.TOP
127129SortType.CONTROVERSIAL
128130```
129131
Original file line number Diff line number Diff line change @@ -15,8 +15,9 @@ class SortType(Enum):
1515 """Enum with all viable sorting types"""
1616
1717 HOT = auto ()
18- TOP = auto ()
1918 NEW = auto ()
19+ RISING = auto ()
20+ TOP = auto ()
2021 CONTROVERSIAL = auto ()
2122
2223
You can’t perform that action at this time.
0 commit comments