We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a62780b commit ac30870Copy full SHA for ac30870
main.py
@@ -34,7 +34,9 @@ def print_help():
34
35
def get_following_users() -> List[NamedUser]:
36
following_plist = Me.get_following()
37
- return [user for user in following_plist]
+ res = [user for user in following_plist]
38
+ res.insert(0, typing.cast(NamedUser, GH.get_user(Me.login)))
39
+ return res
40
41
def dump_following(users: List[NamedUser]):
42
all_logins = [user.login for user in users]
special.yaml
@@ -1,3 +1,4 @@
1
+- Lslightly
2
# - lucidrains
3
# - hax
4
# - ztatlock
0 commit comments