Skip to content

Commit

Permalink
fix: use event_id from env
Browse files Browse the repository at this point in the history
  • Loading branch information
olemathias committed Oct 16, 2023
1 parent e863a28 commit 1752935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wannabe.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def get_lists(self, domain):
wb_maillist = {}

lists = self.request(
'GET', 'communication/lists?per_page=100&event_id={}type=mail'.format(self.event_id) # TODO Not have the 100 limit
'GET', 'communication/lists?per_page=100&event_id={}&type=mail'.format(self.event_id) # TODO Not have the 100 limit
)

for list in lists:
Expand Down

0 comments on commit 1752935

Please sign in to comment.