Skip to content

Commit e94b18f

Browse files
committed
fix minor bug
1 parent 31bfccb commit e94b18f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/twitter_actions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def respond_to_mentions(agent,**kwargs): #REQUIRES TWITTER PREMIUM PLAN
106106
user_ids = agent.connection_manager.perform_action(
107107
connection_name="twitter",
108108
action_name="get-user-details",
109-
params = [None, accounts_to_listen_to]
109+
params = [[], accounts_to_listen_to]
110110
)
111111
if user_ids:
112112
accounts_to_listen_to_ids = [user.get('id') for user in user_ids]

0 commit comments

Comments
 (0)