Skip to content

Commit ac30870

Browse files
committed
add myself as following user
1 parent a62780b commit ac30870

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def print_help():
3434

3535
def get_following_users() -> List[NamedUser]:
3636
following_plist = Me.get_following()
37-
return [user for user in following_plist]
37+
res = [user for user in following_plist]
38+
res.insert(0, typing.cast(NamedUser, GH.get_user(Me.login)))
39+
return res
3840

3941
def dump_following(users: List[NamedUser]):
4042
all_logins = [user.login for user in users]

special.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- Lslightly
12
# - lucidrains
23
# - hax
34
# - ztatlock

0 commit comments

Comments
 (0)