Skip to content

Commit

Permalink
fixing issue in the init of sandgrid (#1319)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafyAmgadBenjamin authored Sep 29, 2020
1 parent 2bdc7f2 commit b817ae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jumpscale/clients/sendgrid/sendgrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
class SendGridClient(Client):
apikey = fields.String()

def __init__(self):
super().__init__()
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

def build_attachment(self, filepath, typ="application/pdf"):
"""
Expand Down

0 comments on commit b817ae1

Please sign in to comment.